How do I convert the value of a PHP variable to string? I was looking for something better than concatenating with an empty string works:
$myText = $myVar . '';
like the ToString() method in Java or .NET.
|
1
|
How do I convert the value of a PHP variable to string? I was looking for something better than concatenating with an empty string works:
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. |
||
|
|
|
|
In a class you can definie what is output by using the magical method
Some more type casting examples:
|
||
|
|
|
|
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. |
|||
|
|
|
|
Does putting it in double quotes work?
|
||
|
|
|
|
For primitives just use If you want to convert objects to strings you will need to define |
||
|
|
|
|
That works, but I don't know if it is the standard way of doing it in PHP. |
||
|
|
|
|
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. |
||
|
|
|
|
You can always create a method named .ToString($in) that returns |
||
|
|