How __toString magic method works in PHP OOP

__toString magic method in PHP OOP is a very good stuff to covert your object into string. Let’s write some code without __toString().

<?php
class LearnToString{
    public $WhatIsToString;
    function __construct($WhatIsToString){
        $this->WhatIsToString=$WhatIsToString;
    }
}
$obj=new LearnToString('hello world');
echo $obj;
?>

Now if you want to see the result then you must see the following error like it says.

Warning (4096): Object of class LearnToString could not be converted to string [YourFileName.php, line 11]

Yes, if you are a PHP OOP learner then you should face this error multiple time and it takes few time to search about this in Google. But it’s pretty common things while you will spend time on learning PHP OOP. Just now I will use a PHP OOP magic methods __toString() in this class. So that when you will make object then it will output you the result as string converted itself. Now let’s see what can be the code.

<?php
class LearnToString{
    public $WhatIsToString;
    function __construct($WhatIsToString){
        $this->WhatIsToString=$WhatIsToString;
    }
    function __toString(){
        return $this->WhatIsToString;
    }
}
$obj = new LearnToString('hello world');
echo $obj;
?>

now you will see that I have used function __toString() magic method. Now run the file and you will see hello world without any error and that is the power of this __toString magic method of PHP OOP. Happy coding!!

Shaharia is a professional software engineer with more than 10 years of experience in the relevant fields. Digital ad certified, cloud platform architect, Big data enthusiasts, tech early adopters.