This is a discussion on ASP2PHP Function List Reference within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Hi, I am looking for a list I can use for reference to convert my ASP code to PHP. Is ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Here's my list so far.
ASP Functions PHP Functions ==================== =============== Left(str,length) substr(str,start,length) Right(str,length) substr(str,start,length) Mid(str,start,stop) substr(str,start,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--- |
|
|||
|
T.Taylor wrote:
> Hi, > > I am looking for a list I can use for reference to convert my ASP code > to PHP. Is there one? > > Thanks. Wouldn't it be simpler to just use asp2php (http://asp2php.mikekohn.net/) ? C. |