Answers for "convert any variable to striing in php"

PHP
1

php convert to string

<?php
class StrValTest
{
    public function __toString()
    {
        return __CLASS__;
    }
}

// Prints 'StrValTest'
echo strval(new StrValTest);
?>
Posted by: Guest on April-02-2020

Code answers related to "convert any variable to striing in php"

Browse Popular Code Answers by Language