[网鼎杯 2020 青龙组]AreUSerialz(ez_反序列化漏洞)
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081<?phpinclude("flag.php");highlight_file(__FILE__);class FileHandler { protected $op; p
2025-03-112.3k words10 mins
1. __construct()
功能:构造函数,在创建对象时自动调用,用于初始化对象的属性。
人话:类被使用就会被调用
示例:
123456789101112class Person { public $name; public $age; public function __construct($name, $age) { $this->name = $name; $this->age = $age; }}$person = new Person('John',