change string to string php code example
Example 1: php convert to string
<?php
class StrValTest
{
public function __toString()
{
return __CLASS__;
}
}
// Prints 'StrValTest'
echo strval(new StrValTest);
?>
Example 2: convert to string php
echo "'$animal'";