mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
10 lines
128 B
PHP
10 lines
128 B
PHP
--TEST--
|
|
Testing user-defined function in included file
|
|
--FILE--
|
|
<?php
|
|
include "016.inc";
|
|
MyFunc("Hello");
|
|
?>
|
|
--EXPECT--
|
|
Hello
|