2008-11-12 00:15:53 +08:00
|
|
|
--TEST--
|
|
|
|
Testing declare statement with several type values
|
2011-06-05 17:35:49 +08:00
|
|
|
--SKIPIF--
|
|
|
|
<?php
|
|
|
|
if (!extension_loaded("mbstring")) {
|
|
|
|
die("skip Requires ext/mbstring");
|
|
|
|
}
|
|
|
|
?>
|
2011-01-05 06:01:09 +08:00
|
|
|
--INI--
|
|
|
|
zend.multibyte=1
|
2008-11-12 00:15:53 +08:00
|
|
|
--FILE--
|
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(encoding = 1);
|
2011-06-20 02:52:58 +08:00
|
|
|
declare(encoding = 112313123213131232100);
|
2008-11-12 00:15:53 +08:00
|
|
|
declare(encoding = 'utf-8');
|
2010-11-24 18:54:35 +08:00
|
|
|
declare(encoding = M_PI);
|
2008-11-12 00:15:53 +08:00
|
|
|
|
|
|
|
print 'DONE';
|
|
|
|
|
|
|
|
?>
|
2010-11-24 18:54:35 +08:00
|
|
|
--EXPECTF--
|
2011-01-05 06:01:09 +08:00
|
|
|
Warning: Unsupported encoding [1] in %sdeclare_001.php on line %d
|
|
|
|
|
2011-06-20 02:52:58 +08:00
|
|
|
Warning: Unsupported encoding [1.1231312321313E+20] in %sdeclare_001.php on line %d
|
2011-01-05 06:01:09 +08:00
|
|
|
|
2014-08-18 22:07:18 +08:00
|
|
|
Fatal error: Encoding must be a literal in %s on line %d
|