|
|

|

|

|
strtr
|
Updated Sat, 12 Aug 2000
|
substr_count
|

|

|
(PHP3 , PHP4 ) substr -- Return part of a string Descriptionstring substr (string string, int start [, int
length])
Substr returns the portion of string
specified by the start and
length parameters.
If start is positive, the returned string
will start at the start'th character of
string.
Examples:
If start is negative, the returned string
will start at the start'th character
from the end of string.
Examples:
If length is given and is positive, the
string returned will end length characters
from start. If this would result in a
string with negative length (because the start is past the end of
the string), then the returned string will contain the single
character at start.
If length is given and is negative, the
string returned will end length characters
from the end of string. If this would
result in a string with negative length, then the returned string
will contain the single character at
start.
Examples:
See also strrchr() and
ereg().

|

|
strtr
|
Updated Sat, 12 Aug 2000
|
substr_count
|

|

|
|
|