1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/testinclude
Zeev Suraski aceaabceff PHP 4.0
1999-04-07 21:05:13 +00:00

5 lines
117 B
Plaintext

<?
print "Before include...\n";
$retval = include("testarray");
print "After include, include returned $retval\n";
?>