我在下面的代码中获取数组值
$userdays_template=$this->templateroutinemodel->get_AllDays_by_templateRoutine_id($rid);
我打印(echo("---userdays_template--.var_dump($userdays_template));
)它,它给了我这样的输出: array(4) { [0]=> string(3) "965" [1]=> string(3) "964" [2]=> string(3) "959" [3]=> string(3) "958" }
所以我的问题是,我怎样才能从这个数组中循环获取每个值?...
我尝试了什么:
$userdays_template=$this->templateroutinemodel->get_AllDays_by_templateRoutine_id($rid);
echo("---userdays_template---------".var_dump($userdays_template));
if (is_array($userdays_template))
{
foreach ($userdays_template as $row)
{
$day_value= $row->day_id;;
echo("---day---------".$day_value);//not printing the this line,why?
}
}
但它没有打印这个 echo( echo("---day---------".$day_value);
)。请帮我