Home > Archive > PHP Language > January 2006 > ASP2PHP Function List Reference
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
ASP2PHP Function List Reference
|
|
| T.Taylor 2006-01-25, 6:57 pm |
| Hi,
I am looking for a list I can use for reference to convert my ASP code
to PHP. Is there one?
Thanks.
| |
| T.Taylor 2006-01-25, 6:57 pm |
| 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---
| |
| Colin McKinnon 2006-01-27, 3:55 am |
| 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.
|
|
|
|
|