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

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

WBOY
WBOYOriginal
2016-06-01 11:50:36966browse

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

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

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

Statement:
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