class something{
public function add_val($val){
$array = array();
foreach($val as $value) {
$array[] = static::$post[${$value}];
}
return $array;
}
pulblic fun
我想創建一個類來處理數組,但我似乎無法得到array_map()在其中工作。 <?php
//Create the test array
$array = array(1,2,3,4,5,6,7,8,9,10);
//create the test class
class test {
//variable to save array inside class
public $clas