同じ変数を介してさまざまなデータを返すphp関数がほとんどなく、その変数を配列に割り当てる必要があります。$_POST
$data をチェックして関数を実行し、多次元配列に代入したいのです$response
が...それを行う方法はありますか???
$functionname = $_POST['functionname'];
function testOne(){
$data = array('test'=>'value1');
return $data;
}
function testTwo(){
$data = array('test'=>'value2');
return $data;
}
//Here I need to execte each functions and return $data
$response = array('result' => array('response'=>'success'),'clients' => $data);
print_r($response);