我有几个 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);