1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/tests/testinclude
Andrei Zmievski cd5b7dd64a bonsai test
2000-06-20 19:21:11 +00:00

6 lines
119 B
Plaintext

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