好的所以我想出来了:)现在感谢你的例子。
class Test_Class {
public function Test_Function_1(array $Test_Array_1) {
echo'TF1_Var_1 = '. $Test_Array_1['TF1_Var_1'] . '<br> <br>';
}
public function Test_Function_2($Test_Selector_2, array $Test_Array_2) {
echo'Test_Selector_2 = '. $Test_Selector_2 . '<br>';
echo'TF2_Var_1 = '. $Test_Array_2['TF2_Var_1'] . '<br>';
}
}
$Test_Run = new Test_Class();
$Test_Run->Test_Function_1([ 'TF1_Var_1' => 'TF1_Val_1', 'TF1_Var_2' => 'TF1_Val_2', 'TF1_Var_3' => 'TF1_Val_3' ]);
$Test_Run->Test_Function_2('TF2_Selector_Data' , [ 'TF2_Var_1' => 'TF2_Val_1', 'TF2_Var_2' => 'TF2_Val_2', 'TF2_Var_3' => 'TF2_Val_3' ]);
我实际上并没有意识到你可以将数组传递给函数,我之前没有看过这样的例子,所以我不知道它是可能的。 我以为你只能用逗号分隔它们来传递字符串,谢谢。
答案 0 :(得分:0)
您应该阅读manual。
class TestClass {
public function test1(array $array) {
var_dump($array);
}
public function test2($selector, array $array) {
var_dump($selector, $array);
}
}
$test = new TestClass();
$test->test1([ 'TF1_Var_1' => 'TF1_Val_1', 'TF1_Var_2' => 'TF1_Val_2', 'TF1_Var_3' => 'TF1_Val_3' ]);
$test->test2("TF2_Selector", [ 'TF1_Var_1' => 'TF1_Val_1', 'TF1_Var_2' => 'TF1_Val_2', 'TF1_Var_3' => 'TF1_Val_3' ]);