mirror of
https://github.com/php/php-src.git
synced 2025-01-25 05:04:20 +08:00
9b894e6e62
# This issue only happens in this branch
17 lines
256 B
PHP
17 lines
256 B
PHP
--TEST--
|
|
Testing declare statement with several type values
|
|
--FILE--
|
|
<?php
|
|
|
|
declare(encoding = 1);
|
|
declare(encoding = 1123131232131312321);
|
|
declare(encoding = NULL);
|
|
declare(encoding = M_PI);
|
|
declare(encoding = 'utf-8');
|
|
|
|
print 'DONE';
|
|
|
|
?>
|
|
--EXPECT--
|
|
DONE
|