summaryrefslogtreecommitdiff
path: root/tests/php/dbg.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/php/dbg.php')
-rw-r--r--tests/php/dbg.php57
1 files changed, 0 insertions, 57 deletions
diff --git a/tests/php/dbg.php b/tests/php/dbg.php
deleted file mode 100644
index e626ce0..0000000
--- a/tests/php/dbg.php
+++ /dev/null
@@ -1,57 +0,0 @@
-<?php
-
-/**
- * For debugging tests
- *
- */
-
-
-
-
-
-
-
-
-echo "\x1b[1;31m";
-(new ReflectionExtension('extension_for_tests') )->info();
-echo "\x1b[0m";
-echo "\x1b[0;34m";
-var_export( ini_get_all ( 'extension_for_tests' ) );
-echo "\x1b[0m", PHP_EOL;
-exit;
-
-TestIniEntries\iniTest1();
-
-//ini_set("extension_for_tests.some_string3", 'RFVBGT') ;
-echo PHP_EOL;
-echo "extension_for_tests.some_string ={{" , ini_get("extension_for_tests.some_string") , "}}", PHP_EOL;
-echo "extension_for_tests.some_string2 ={{" , ini_get("extension_for_tests.some_string2") , "}}", PHP_EOL;
-echo "extension_for_tests.some_string3 ={{" , ini_get("extension_for_tests.some_string3") , "}}", PHP_EOL;
-echo "extension_for_tests.some_string3 ={{" , ini_get("extension_for_tests.some_bool") , "}}", PHP_EOL;
-
-
-echo "\x1b[1;31m";
-(new ReflectionExtension('extension_for_tests') )->info();
-echo "\x1b[0m";
-
-echo "\x1b[0;34m";
-var_export( ini_get_all ( 'extension_for_tests' ) );
-echo "\x1b[0m", PHP_EOL;
-
-ini_set("extension_for_tests.some_string3", 'RFVBGT') ;
-echo "extension_for_tests.some_string3 ={{" , ini_get("extension_for_tests.some_string3") , "}}", PHP_EOL;
-ini_restore ( 'extension_for_tests.some_string3' );
-echo "extension_for_tests.some_string3 ={{" , ini_get("extension_for_tests.some_string3") , "}}", PHP_EOL;
-
-
-echo "extension_for_tests.some_bool :";
-var_dump(ini_get("extension_for_tests.some_bool"));
-echo PHP_EOL;
-
-ini_set("extension_for_tests.some_bool", 'off');
-
-echo "extension_for_tests.some_bool :";
-var_dump(ini_get("extension_for_tests.some_bool"));
-echo PHP_EOL;
-
-//var_export(php_sapi_name());