mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
11 lines
198 B
PHP
11 lines
198 B
PHP
--TEST--
|
|
Invalid octal number that overflows to double
|
|
--EXTENSIONS--
|
|
tokenizer
|
|
--FILE--
|
|
<?php
|
|
echo token_name(token_get_all('<?php 0177777777777777777777787')[1][0]), "\n";
|
|
?>
|
|
--EXPECT--
|
|
T_DNUMBER
|