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.
|
How do I convert the value of a PHP variable to string? I was looking for something better than concatenating with an empty string:
like the ToString() method in Java or .NET.
| ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
This is done with typecasting:
In a class you can define what is output by using the magical method
Some more type casting examples:
| ||||
|
feedback
|
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. | ||||
|
feedback
|
|
You can either use typecasting:
or StringValue:
or SetType:
They all work for the same thing in terms of Type-Juggling. | ||||
|
feedback
|
|
For primitives just use If you want to convert objects to strings you will need to define | |||
|
feedback
|
|
This might be what you are looking for strval,
| ||||
|
feedback
|
|
I haven't seen this answer, so here it is :
You can also use like
Hope it helps :D | |||
feedback
|
|
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. | |||
|
feedback
|
|
You can always create a method named .ToString($in) that returns | |||
|
feedback
|
|
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). | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|