From 84a8ab602d44790df6696d54cd649ebf510dcc0a Mon Sep 17 00:00:00 2001 From: SongHappy Date: Wed, 8 Oct 2025 17:52:20 +0800 Subject: [PATCH] Update index.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 更正错误 --- Level16/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Level16/index.php b/Level16/index.php index 54948bd..facf6e3 100644 --- a/Level16/index.php +++ b/Level16/index.php @@ -5,7 +5,7 @@ __wakeUp() 方法用于反序列化时自动调用。例如 unserialize()。 __invoke() 方法用于一个对象被当成函数时应该如何回应。例如 $obj() 应该显示些什么。 -__toString() 方法用于一个类被当成字符串时应怎样回应。例如 echo $obj; 应该显示些什么。 +__toString() 方法用于一个对象被当成字符串时应怎样回应。例如 echo $obj; 应该显示些什么。 试着把他们串起来吧ww @@ -46,4 +46,4 @@ public function __wakeUp() { unserialize($_POST['o']); } else { highlight_file(__FILE__); -} \ No newline at end of file +}