|
|
| |
| |
Returns the portion of string specified by the start and length parameters.
If start is non-negative, the returned string will start at the start'th position in string, counting from zero. For instance, in the string 'abcdef', the character at position 0 is 'a', the character at position 2 is 'c', and so forth. |
| |
|
| |
<?php
// Accessing single characters in a string
// can also be achived using "curly braces"
$string = 'abcdef';
?>
|
|
| |
|
|
| |
Date entered :
3rd Apr 2008
Rating : No Rating
Accessed :
4359
Submitted by :
goldeekhan |
|
|