I am new to PHP so I thought I would make a Reference List of some of
the functions.
Below is what I have so far.
ASP Functions PHP Functions
=============== ===== ===============
Left(str,length ) substr(str,star t,length)
Right(str,lengt h) substr(str,star t,length)
Mid(str,start,s top) substr(str,star t,length)
Len(str) strlen(str)
Trim(str) trim(str)
LTrim(str) ltrim(str)
RTrim(str) rtrim(str)
UCase(str) strtoupper(str)
LCase(str) strtolower(str)
InStr(str,value ) ---DON'T KNOW---
the functions.
Below is what I have so far.
ASP Functions PHP Functions
=============== ===== ===============
Left(str,length ) substr(str,star t,length)
Right(str,lengt h) substr(str,star t,length)
Mid(str,start,s top) substr(str,star t,length)
Len(str) strlen(str)
Trim(str) trim(str)
LTrim(str) ltrim(str)
RTrim(str) rtrim(str)
UCase(str) strtoupper(str)
LCase(str) strtolower(str)
InStr(str,value ) ---DON'T KNOW---
Comment