php代码奇巧淫技

  

<?php
register_shutdown_function(function(){
  //即便是 index1.php 里边发生语法错误,依旧会执行
});
include 'index1.php';

  

 

<?php
function after_halt(){
  $fp = fopen(__FILE__, 'rb');
  fseek($fp, __COMPILER_HALT_OFFSET__);
  return stream_get_contents($fp);
}
echo after_halt();
__HALT_COMPILER();

  

token_get_all 使用技巧:

待编辑

posted @ 2020-02-26 23:55  搬代码的民工  阅读(160)  评论(0)    收藏  举报