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