ホームページ >バックエンド開発 >PHPチュートリアル >ページビューを増やすためにコードに「更新時刻」を追加したいと考えています。
読書増加コードに「更新時間」を追加したい
public function hitsAction() {<br /> $id = (int)$this->get('id');<br /> if (empty($id)) exit;<br /> $data = $this->db->setTableName('content')->find($id, 'hits');<br /> $hits = $data['hits'] + 1;<br /> $this->db->setTableName('content')->update(array('hits'=>$hits), 'id=?' , $id);<br /> echo "document.write('$hits');";<br /> }
<br />public function hitsAction() {<br /> $id = (int)$this->get('id');<br /> if (empty($id)) exit;<br /> $data = $this->db->setTableName('content')->find($id, 'hits');<br /> $hits = $data['hits'] + 1;<br /> $t = time();<br /> $this->db->setTableName('content')->update(array('hits'=>$hits,'time'=>$t), 'id=?' , $id);<br /> echo "document.write('$hits');";<br />}<br />