考慮我在PHP中大newbe,所以.. 我做了一些爭論誰做什麼功能,我想打電話給只有一個參數.. 這裏是我的測試:如何在php函數中調用精確參數?
public static function test($arg1,$arg2,$arg3)
{
$bob1 = "thats arg1";
$bob2 = "thats arg2";
$bob3 = "thats arg3";
$arg1 = echo $bob1;
$arg2 = echo $bob2;
$arg3 = echo $bob3;
}
現在我想致電$arg3
,我怎樣才能撥打test($arg3);
? test(' ' , ' ' , $arg3)
是否合法?還是有更好的做法?
您不能使用_call_參數,您可以使用**參數列表調用_functions_ **。 – moonwave99