mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
10 lines
127 B
PHP
10 lines
127 B
PHP
--TEST--
|
|
Testing user-defined function in included file
|
|
--FILE--
|
|
<?php
|
|
include "016.inc";
|
|
MyFunc("Hello");
|
|
?>
|
|
--EXPECT--
|
|
Hello
|