/**
 * 打印函数
 *
 */
if (! function_exists ( 'dump' )) {
    function dump($var, $exit = true) {
        echo '<pre>';
        print_r ( $var );
        echo '</pre>';
        if ($exit) {
            die ();
        }
    }
}

 

相关文章:

  • 2022-12-23
  • 2021-05-02
  • 2022-12-23
  • 2022-02-08
  • 2021-06-30
  • 2021-07-10
  • 2022-12-23
  • 2021-11-19
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-11
  • 2022-12-23
  • 2022-02-10
相关资源
相似解决方案