1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00
Files
archived-php-src/tests/testinclude
1999-07-08 21:42:29 +00:00

5 lines
117 B
Plaintext

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