mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
6 lines
119 B
Plaintext
6 lines
119 B
Plaintext
<?
|
|
print "Before include....\n";
|
|
$retval = include("testarray");
|
|
print "After include, include returned $retval\n";
|
|
?>
|