Home > Backend Development > PHP Tutorial > 取得单条网站评论以数组形式进行输出_PHP

取得单条网站评论以数组形式进行输出_PHP

WBOY
Release: 2016-06-01 11:50:36
Original
970 people have browsed it

原库函数中,没有获取单条评论显示的方法,增加如下

public static function single($id){
global $db;
return $db->query("SELECT * FROM `{$db->prefix}comment` WHERE `id` = '{$id}'",1);
}
Copy after login

输出数组,在模板里调用即可

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template