11 lines
159 B
Plaintext
11 lines
159 B
Plaintext
|
|
--TEST--
|
||
|
|
Standard behaviour of __DIR__
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
echo __DIR__ . "\n";
|
||
|
|
echo dirname(__FILE__) . "\n";
|
||
|
|
?>
|
||
|
|
--EXPECTF--
|
||
|
|
%stests%sconstants
|
||
|
|
%stests%sconstants
|