blob: eadbb2156dd1c4bcaffb9dc8b17b595c530f6e16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--TEST--
zend multibyte (11)
--SKIPIF--
--XFAIL--
https://bugs.php.net/bug.php?id=66582 - still leaks memory which causes fail in debug mode
--INI--
zend.multibyte=1
--FILE--
<?php
declare(encoding="ISO-8859-15") {
declare(encoding="ISO-8859-1");
echo "ok\n";
}
?>
--EXPECTF--
ok
|