Re: [PHP] converting numeric to a string

2001-08-07 Thread Philip Olson
Have a look here : http://php.net/manual/en/language.types.type-juggling.php http://php.net/manual/en/function.settype.php regards, philip On Tue, 7 Aug 2001, Don wrote: > Hi, > > I'm looking at the 'String' section of the online documentation. I cannot > find a function that converts

RE: [PHP] converting numeric to a string

2001-08-07 Thread Kees Hoekzema
hey, this function does not exists. An interger can be treated as string without any problems, see also: http://www.php.net/manual/en/language.types.string.php#language.types.string .conversion Kees > -Original Message- > From: Don [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 07,

Re: [PHP] converting numeric to a string

2001-08-07 Thread rm
check out settype() however read the doc on types you may not need settype at all rm --- Don <[EMAIL PROTECTED]> 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 bli

Re: [PHP] converting numeric to a string

2001-08-07 Thread Alexander Wagner
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 setty