Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
This seems to be the correct answer: stackoverflow.com/a/3559247/11236 (print_r(foo, true))! – ripper234 Jan 3 at 16:18

15 Answers

up vote 203 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.

share|improve this answer
Object of class Foo could not be converted to string. Is there a general solutions that can convert anything (arrays+objects+whatever) to a string? – ripper234 Jan 3 at 15:42
1  
1  
Note: this will give a PHP notice when used on arrays. – dave1010 Feb 12 at 17:22
-1 for not naming the function – Supuhstar Mar 26 at 15:15
1  
@Supuhstar Ah right, I finally understand where you're coming from. Sorry if I was being obtuse before. I agree that this is a relevant detail and it would be valuable to add it, perhaps separating the answer into 'Converting Primitives' and 'Converting Objects' sections with headers. – Mark Amery Apr 11 at 9:32
show 5 more comments

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);
share|improve this answer
1  
I has forgotten about __toString() but really needed it today. Thanks for including in you answer! – MikeSchinkel Jun 17 '12 at 6:44

You can either use typecasting:

$var = (string)$varname;

or StringValue:

$var = strval($varname);

or SetType:

$success = settype($varname, 'string');
// $varname itself becomes a string

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

share|improve this answer

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.

share|improve this answer

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

share|improve this answer
1  
"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
3  
This is actually the right answer, given the additional requirement in the comment to the question. Please vote this up more! – Jon Watte Nov 2 '12 at 20:46
1  
FYI newcomers, the true part is essential! I tried several methods of string conversion including print_r and was disappointed from all of them, and then I discovered the true parameter (read the documentation for why it works). – ripper234 Jan 3 at 16:19

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.

share|improve this answer

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().

share|improve this answer

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.

share|improve this answer

Does putting it in double quotes work?

$myText = "$myVar";
share|improve this answer
That works, but I don't know if it is the standard way of doing it in PHP. – Antoine Aubry Sep 15 '12 at 9:56
It is a very standard way of doing it in bash – Yauhen Yakimovich Mar 11 at 22:13

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

function castToString($instance) 
{ 
    if (is_object($instance) && method_exists($instance, '__toString')) {
        return call_user_func_array(array($instance, '__toString'));
    }
}

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).

share|improve this answer

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

share|improve this answer

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).

share|improve this answer

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.

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

share|improve this answer

For objects you may not be able to use the cast operator instead I use the json_encode() method.

For example the following will output contents to the error log:

error_log(json_encode($args));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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