PHP:
class video
{
public function __construct($text)
{
$this->youtube($text, "[*]");
}
public function youtube($text, $code)
{
$html = preg_replace("#\[\*\]#", $text, $code);
return $html;
}
}
$video_class = new video("HELLO");
echo $video_class;
Catchable fatal error: Object of class video could not be converted to string in /home/prxainf1/public_html/gamingonlinux.info/test.php on line 21









