私のmysqlのクエリがされています。私が得たはstdClassオブジェクトを削除し、stdClassのオブジェクトから(post_idの)カウント1
$query=('SELECT count(post_id) FROM comments where post_id='.$row['post_id']);
$usercomments = $this->db->query($query);
foreach ($usercomments->result() as $comments)
出力:
stdClass Object ([count(post_id)] => 1)
カウント値1はどのようにして得られますか?印刷方法は?
のようなオブジェクトにアクセスすることができますエイリアス
を使用することができます私はちょうど行がOK –