mirror of
https://github.com/php/php-src.git
synced 2025-01-24 20:53:37 +08:00
9 lines
119 B
PHP
9 lines
119 B
PHP
--TEST--
|
|
include() a file from the current script directory
|
|
--FILE--
|
|
<?php
|
|
include("inc.inc");
|
|
?>
|
|
--EXPECT--
|
|
Included!
|