北风留影 发表于 2017-4-5 08:34:21

Zend Studio 远程调试的 dummy.php

<?php
@ini_set('zend_monitor.enable', 0);
if(@function_exists('output_cache_disable')) {
@output_cache_disable();
}
if(isset($_GET['debugger_connect']) && $_GET['debugger_connect'] == 1) {
if(function_exists('debugger_connect')){
debugger_connect();
exit();
} else {
echo "No connector is installed.";
}
}
?>
页: [1]
查看完整版本: Zend Studio 远程调试的 dummy.php