CakePHP で特定の配列に新しいインデックスを変更して追加する簡単な方法があるかどうか疑問に思っていました。
現在、次のようなループを実行しています。
$posts = $this->paginate('Post');
$a=0;
foreach($posts as $post){
$posts[$a]['Read'] = myfunction($post['Post']['id']);
$a++;
}
ありがとう。
CakePHP で特定の配列に新しいインデックスを変更して追加する簡単な方法があるかどうか疑問に思っていました。
現在、次のようなループを実行しています。
$posts = $this->paginate('Post');
$a=0;
foreach($posts as $post){
$posts[$a]['Read'] = myfunction($post['Post']['id']);
$a++;
}
ありがとう。