Jump to content

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.