Ahmed Saad wrote:
On 23/06/06, cajbecu <[EMAIL PROTECTED]> wrote:
$data .= "".ord(substr($string,$i,1)).";";
and I think there's no need for substr.. just
$data .= "".$string[$i].";";
/ahmed
And, for the record, you are not converting a string to ASCII, rather an
ASCII string to
On 23/06/06, cajbecu <[EMAIL PROTECTED]> wrote:
$data .= "".ord(substr($string,$i,1)).";";
and I think there's no need for substr.. just
$data .= "".$string[$i].";";
/ahmed
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
That`s true, my mistake.. (length is in pascal)
cheers,
Juanjo Pascual wrote:
> Ok. Thanks.
>
> You only have to change the function *length() *by the function *strlen()*
>
>
> cajbecu escribió:
>> function stransform($string) {
>> for ($i=0;$i> $data .= "".ord(substr($string,$i,1)
Ok. Thanks.
You only have to change the function *length() *by the function *strlen()*
cajbecu escribió:
function stransform($string) {
for ($i=0;$i
Do you know any way to convert any string to ascii characters??
I mean:
*"abcdefgh"*
to
*"abcdefgh"*
Juanjo.
function stransform($string) {
for ($i=0;$i Do you know any way to convert any string to ascii characters??
>
> I mean:
>
>
> *"abcdefgh"*
>
> to
>
> *"abcdefgh"*
>
>
> Juanjo.
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Do you know any way to convert any string to ascii characters??
I mean:
*"abcdefgh"*
to
*"abcdefgh"*
Juanjo.
6 matches
Mail list logo