php-src/Zend/tests/declare_001.phpt

23 lines
352 B
Plaintext
Raw Normal View History

--TEST--
Testing declare statement with several type values
2010-11-23 21:45:22 +00:00
--SKIPIF--
<?php
if (ini_get("zend.multibyte")) {
die("skip Requires zend.multibyte=0");
2010-11-23 21:45:22 +00:00
}
?>
--FILE--
<?php
declare(encoding = 1);
declare(encoding = 1123131232131312321);
declare(encoding = NULL);
declare(encoding = M_PI);
declare(encoding = 'utf-8');
print 'DONE';
?>
--EXPECT--
DONE