Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

final procedural project

ER authored on 13/04/2012 10:17:34
Showing 1 changed files
1 1
new file mode 100755
... ...
@@ -0,0 +1,13 @@
1
+<?php
2
+@ini_set('zend_monitor.enable', 0);
3
+if (@function_exists('output_cache_disable')) {
4
+    @output_cache_disable();
5
+}
6
+if (isset($_GET['debugger_connect']) && $_GET['debugger_connect'] == 1) {
7
+    if (function_exists('debugger_connect')) {
8
+        debugger_connect();
9
+        exit();
10
+    } else {
11
+        echo "No connector is installed.";
12
+    }
13
+}