up vote 55 down vote favorite
5
share [g+] share [fb]

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.

link|improve this question

79% accept rate
feedback

13 Answers

up vote 96 down vote accepted

You can use the casting operators:

$myText = (string)$myVar;

There are more details for string casting and conversion in the Strings section of the PHP manual, including special handling for booleans and nulls.

link|improve this answer
feedback

This is done with typecasting:

$strvar = (string) $var; // Casts to string
echo $var; // Will cast to string implicitly
var_dump($var); // Will show the true type of the variable

In a class you can define what is output by using the magical method __toString. An example is below:

class Bottles {
    public function __toString()
    {
        return 'Ninety nine green bottles';
    }
}

$ex = new Bottles;
var_dump($ex, (string) $ex);
// Returns: instance of Bottles and "Ninety nine green bottles"

Some more type casting examples:

$i = 1;

// int 1
var_dump((int) $i);

// bool true
var_dump((bool) $i);

// string "1"
var_dump((string) 1);
link|improve this answer
feedback

How do I convert the value of a PHP variable to string?

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.

link|improve this answer
feedback

You can either use typecasting:

$var = (string)$varname;

or StringValue:

$var = strval($varname);

or SetType:

$var = settype($varname, 'string');

They all work for the same thing in terms of Type-Juggling.

link|improve this answer
feedback

For primitives just use (string)$var or print this variable straight away. PHP is dynamically typed language and variable will be casted to string on the fly.

If you want to convert objects to strings you will need to define __toString() method that returns string. This method is forbidden to throw exceptions.

link|improve this answer
feedback

This might be what you are looking for strval,

string strval ( mixed $var )

Get the string value of a variable. See the documentation on string for more information on converting to string.

This function performs no formatting on the returned value. If you are looking for a way to format a numeric value as a string, please see sprintf() or number_format().

link|improve this answer
feedback

Does putting it in double quotes work?

$myText = "$myVar";
link|improve this answer
feedback

I haven't seen this answer, so here it is :

$myText = print_r($myVar,true);

You can also use like

$myText = print_r($myVar,true)."foo bar";

Hope it helps :D

link|improve this answer
"when the return parameter is TRUE, [print_r] will return a string." As print_r is a nice way to print objects, arrays (and also numbers/strings), it is a good way to transform an object into a human-readable string. – Cedric Sep 1 '10 at 10:51
feedback

Another option is to use the built in settype function:

<?php
$foo = "5bar"; // string
$bar = true;   // boolean

settype($foo, "integer"); // $foo is now 5   (integer)
settype($bar, "string");  // $bar is now "1" (string)
?>

This actually performs a conversion on the variable unlike typecasting and allows you to have a general way of converting to multiple types.

link|improve this answer
feedback

You can always create a method named .ToString($in) that returns
$in . '';

link|improve this answer
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).

link|improve this answer
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.

link|improve this 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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.