我有一个存储照片信息的类。它有一堆公共的“getter”和“setter”来让我诚实。当像这样公开添加有关照片的评论时:
$photo->addComment('Blue');
该类将调用另一个函数,该函数会将评论添加到私有评论数组中,如下所示:
$comments[] = array('comment'=>$new_comment,'time'=>$new_time,'user'=>$new_user);
$key
确定刚刚创建的新版本以echo $comments[$key]['comment'];
打印“蓝色”的最佳方法是什么?