Ensure a number is three digits long

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

I have am trying to create functions to convert strings to ascii and vice 
versa:

function string_to_ascii( $str ) {
 for( $i=0; $i < strlen( $str ); $i++ ) {
   $asc .= ord( substr( $str, $i ) );
  }
 return $asc;
}

This function works fine, however I need to ensure that the ASCII 
convertions are three digits long so that I know where to split the ASCII 
string when converting back to a normal string. i.e. 97 must be 097.

Thanks for any advice offered 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux