mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
27 lines
329 B
PHP
27 lines
329 B
PHP
--TEST--
|
|
Test use of magic constants in the global scope
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(
|
|
__LINE__,
|
|
__FILE__,
|
|
__DIR__,
|
|
__FUNCTION__,
|
|
__METHOD__,
|
|
__CLASS__,
|
|
__TRAIT__,
|
|
__NAMESPACE__
|
|
);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
int(4)
|
|
string(%d) "%s"
|
|
string(%d) "%s"
|
|
string(0) ""
|
|
string(0) ""
|
|
string(0) ""
|
|
string(0) ""
|
|
string(0) ""
|