文字列、、、$test1
およびが関数$test2
で作成されます。どうすれば彼女を印刷できますか?$test3
$test4
test()
私のコード:
conf.php
<?php
function test(){
$test1 = 'test1 string';
$test2 = 'test2 string';
$test3 = 'test3 string';
$test4 = 'test4 string';
}
?>
test.php
<?php
require_once("conf.php");
test();
echo $test1;
echo $test2;
echo $test3;
echo $test4;
?>
コードが機能しないのはなぜですか?
$test1
、、、および印刷されなかっ$test2
た理由。$test3
$test4
PS:できればグローバルパラメータなしで。