摘要:
[天翼杯 2021]esay_eval 进来就看到源码,是一道php反序列的题 <?php class A{ public $code = ""; function __call($method,$args){ eval($this->code); } function __wakeup(){ $t 阅读全文
摘要:
[GDOUCTF 2023]反方向的钟 源码: <?php error_reporting(0); highlight_file(__FILE__); // flag.php class teacher{ public $name; public $rank; private $salary; pu 阅读全文
摘要:
SplFileObject简单使用 <?php // 创建一个 SplFileObject 对象,并打开文件 $file = new SplFileObject('example.txt', 'r'); // 循环读取文件的每一行内容 while (!$file->eof()) { // 读取当前行 阅读全文