classFlag{ //flag.php public $file; publicfunction__tostring(){ if(isset($this->file)){ echo file_get_contents($this->file); echo"<br>"; return ("U R SO CLOSE !///COME ON PLZ"); } } } ?>
<?php classFlag{ //flag.php public $file="flag.php"; publicfunction__tostring(){ if(isset($this->file)){ echo file_get_contents($this->file); echo"<br>"; return ("U R SO CLOSE !///COME ON PLZ"); } } } $file = new Flag(); echo serialize($file);