How do I convert the value of a PHP variable to string? I was looking for something better than concatenating with an empty string:
$myText = $myVar . '';
like the ToString() method in Java or .NET.
|
You can use the casting operators:
There are more details for string casting and conversion in the Strings section of the PHP manual, including special handling for booleans and nulls. |
|||||||||||||||||
|
|
This is done with typecasting:
In a class you can define what is output by using the magical method
Some more type casting examples:
|
|||||
|
|
You can either use typecasting:
or StringValue:
or SetType:
They all work for the same thing in terms of Type-Juggling. |
||||
|
|
A value can be converted to a string using the (string) cast or the strval() function. (Edit: As Thomas also stated). It also should be automatically casted for you when you use it as a string. |
||||
|
|
|
I haven't seen this answer, so here it is :
You can also use like
Hope it helps :D |
|||||||||||||
|
|
For primitives just use If you want to convert objects to strings you will need to define |
|||
|
|
|
This might be what you are looking for strval,
|
||||
|
|
|
Another option is to use the built in settype function:
This actually performs a conversion on the variable unlike typecasting and allows you to have a general way of converting to multiple types. |
|||
|
|
|
Does putting it in double quotes work?
|
|||||
|
|
In addition to the answer given by Thomas G. Mayfield: If you follow the link to the string casting manual, there is a special case which is quite important to understand: (string) cast is preferable especially if your variable $a is an object, because PHP will follow the casting protocol according to its object model by calling __toString() magic method (if such is defined in the class of which $a is instantiated from). PHP does something similar to
The (string) casting operation is a recommended technique for PHP5+ programming making code more Object-Oriented. IMO this is a nice example of design similarity (difference) to other OOP languages like Java/C#/etc., i.e. in its own special PHP way (whenever it's for the good or for the worth). |
||||
|
|
|
Are you converting integers or something else? If you're converting anything other than simple types like integers or booleans, you'd need to write your own function/method for the type that you're trying to convert, otherwise PHP will just print the type (such as array, GoogleSniffer, or Bidet). |
|||
|
|
|
PHP is dynamically typed, so like Chris Fournier said, "If you use it like a string it becomes a string". If you're looking for more controll over the format of the string then printf is your answer. |
|||
|
|
|
Double quotes should work too... it should create a string, then it should APPEND/INSERT the casted STRING value of $myVar in between 2 empty strings. |
|||
|
|
|
For objects you may not be able to use the cast operator instead I use the For example the following will output contents to the error log:
|
|||
|
|
print_r(foo, true))! – ripper234 Jan 3 at 16:18