1<?php
2echo substr('abcdef', 1); // bcdef
3echo substr('abcdef', 1, 3); // bcd
4echo substr('abcdef', 0, 4); // abcd
5echo substr('abcdef', 0, 8); // abcdef
6echo substr('abcdef', -1, 1); // f
7
8// Accessing single characters in a string
9// can also be achieved using "square brackets"
10$string = 'abcdef';