以下のコードの配列値を取得します
$userdays_template=$this->templateroutinemodel->get_AllDays_by_templateRoutine_id($rid);
そして、それをprint( 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);
)を出力していません。私を助けてください