Don wrote:
> Hi,
>
> I'm looking at the 'String' section of the online documentation.  I
> cannot find a function that converts a numeric to a string, e.g., 1
> --> "1".
>
> Am I blind or does this not exist?

With loose typing, this is not really necessary.

If I'm wrong here, you might use settype() or do a type cast:
$str = (string)$int;

regards
Wagner

-- 
Madness takes its toll. Please have exact change.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to