summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug75049.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/bug75049.phpt')
-rw-r--r--ext/spl/tests/bug75049.phpt16
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/spl/tests/bug75049.phpt b/ext/spl/tests/bug75049.phpt
new file mode 100644
index 0000000000..2f03a3b031
--- /dev/null
+++ b/ext/spl/tests/bug75049.phpt
@@ -0,0 +1,16 @@
+--TEST--
+Bug #75049 (spl_autoload_unregister can't handle spl_autoload_functions results)
+--FILE--
+<?php
+class Auto { public static function loader() {}}
+$autoloader = '\Auto::loader';
+
+echo (int)spl_autoload_register($autoloader);
+echo (int)spl_autoload_unregister($autoloader);
+echo (int)spl_autoload_register($autoloader);
+foreach (spl_autoload_functions() as $loader) {
+ echo (int)spl_autoload_unregister($loader);
+}
+echo (int)count(spl_autoload_functions());
+--EXPECTF--
+11110