mirror of
https://github.com/php/php-src.git
synced 2024-12-19 06:50:17 +08:00
10 lines
156 B
PHP
Executable File
10 lines
156 B
PHP
Executable File
--TEST--
|
|
Standard behaviour of __DIR__
|
|
--FILE--
|
|
<?php
|
|
echo __DIR__ . "\n";
|
|
echo dirname(__FILE__) . "\n";
|
|
--EXPECTF--
|
|
%s/tests/constants
|
|
%s/tests/constants
|