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