摘要:
171 要点:使用 or true 绕过 where 后的条件约束(MySQL中非零数字可代表true) $sql = "select username,password from user where username !='flag' and id = '".$_GET['id']."' lim 阅读全文
摘要:
PHP反射读取注释 <?php /** * class A 类注释 */ class A { /** * function B 方法注释 */ public function B() { echo "abc"; } } $re = new ReflectionClass(new A()); var_ 阅读全文