mirror of
https://github.com/php/php-src.git
synced 2026-03-25 08:42:29 +01: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";
|
|
?>
|