Ok. Thanks.

You only have to change the function *length() *by the function *strlen()*


cajbecu escribió:
function stransform($string) {
        for ($i=0;$i<length($string);$i++) {
        $data .= "&#".ord(substr($string,$i,1)).";";
        }
return $data;
}


Juanjo Pascual wrote:
Do you know any way to convert any string to ascii characters??

I mean:


*"abcdefgh"*

to

*"&#97;&#98;&#99;&#100;&#101;&#102;&#103;&#104"*


Juanjo.



Reply via email to