Commit:    645f84e41bbda22c7a19326cd1a7df7994678976
Author:    Xinchen Hui <larue...@php.net>         Tue, 31 Jul 2012 10:49:13 
+0800
Parents:   7e3e1837c8e60ad87e9b7aee6cb306a843f5c784
Branches:  PHP-5.3

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=645f84e41bbda22c7a19326cd1a7df7994678976

Log:
Test for bug #62680

Bugs:
https://bugs.php.net/62680

Changed paths:
  A  Zend/tests/bug62680.phpt


Diff:
diff --git a/Zend/tests/bug62680.phpt b/Zend/tests/bug62680.phpt
new file mode 100644
index 0000000..804dece
--- /dev/null
+++ b/Zend/tests/bug62680.phpt
@@ -0,0 +1,13 @@
+--TEST--
+Bug #62680 (Function isset() throws fatal error on set array if non-existent 
key depth >= 3)
+--XFAIL--
+see https://bugs.php.net/62680
+--FILE--
+<?php
+$array = array("");
+var_dump(isset($array[0]["a"]["b"]));
+var_dump(isset($array[0]["a"]["b"]["c"]));
+?>
+--EXPECT--
+bool(false)
+bool(false)


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to