我有一个数组,它是基于关联元素和索引元素的混合类型,我想从数组中删除所有值和键并使该数组为空,我尝试了 unset 函数,但它没有删除数组的最后一个元素,你能建议其他一些有效的方法。
$myArray=['id','name'=>'=','address'=>['home'=>'dummydata','ofc'=>'ffff'],'status']; //declared in another class
$this->repository->myArray();
foreach($this->repository->myArray() as $key =>$value){
unset($key);
unset($value);
}
我想让一个数组为空$myArray
在父类中声明我想让它为myArray
空