Jump to content

[SOLVED] Converting number to string


Recommended Posts

How to convert a number to a string ? I want to create a new string by concatenating a string and a number.How to do it ?

 

The scenario is the user selects the gallery he wishes to see.And I construct the filename which contains links to images by concatenating a standard string "file" and the number he has chosen say "4" to create

"file4.txt" and assign it to a variable $myfile and then open the relevant file and then display the list of images contained in it. Can anybody help ?

Link to comment
https://forums.phpfreaks.com/topic/103707-solved-converting-number-to-string/
Share on other sites

just typecast it

$yourNumber=999;

$numberInString=(string)$yourNumber;

 

Thank you.But I didnt know there were variable types in PHP. I tried just concatenating a string variable and interger variable and assigned it to a string and it accepted it and was successful. I could do what I wanted.

But thanks anyway.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.