summaryrefslogtreecommitdiff
path: root/tests/php/phpt/ini_entries/003.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/php/phpt/ini_entries/003.phpt')
-rw-r--r--tests/php/phpt/ini_entries/003.phpt27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/php/phpt/ini_entries/003.phpt b/tests/php/phpt/ini_entries/003.phpt
deleted file mode 100644
index 5ad6efb..0000000
--- a/tests/php/phpt/ini_entries/003.phpt
+++ /dev/null
@@ -1,27 +0,0 @@
---TEST--
-Test ini entries #3
---DESCRIPTION--
-Test to check palce action of ini entries
---SKIPIF--
-<?php if (!extension_loaded("extension_for_tests")) print "skip"; ?>
---FILEEOF--
-<?php
-
-echo ini_get('ini2'), PHP_EOL;
-echo ini_get('ini3'), PHP_EOL;
-ini_set('ini2', 'newIni2');
-ini_set('ini3', 'newIni3');
-echo ini_get('ini2'), PHP_EOL;
-echo ini_get('ini3'), PHP_EOL;
-ini_restore('ini2');
-ini_restore('ini3');
-echo ini_get('ini2'), PHP_EOL;
-echo ini_get('ini3');
-
---EXPECT--
-valIni2
-valIni3
-newIni2
-valIni3
-valIni2
-valIni3 \ No newline at end of file