phpbbs.article.h

来自「linux/unix环境下的建站系统」· C头文件 代码 · 共 30 行

H
30
字号
#ifndef PHP_BBS_ARTICLE_H#define PHP_BBS_ARTICLE_H/* 文章索引读取和查询 */PHP_FUNCTION(bbs_get_records_from_id);PHP_FUNCTION(bbs_get_records_from_num);PHP_FUNCTION(bbs_get_filename_from_num);PHP_FUNCTION(bbs_get_threads_from_id);PHP_FUNCTION(bbs_get_threads_from_gid);PHP_FUNCTION(bbs_countarticles);PHP_FUNCTION(bbs_getarticles);PHP_FUNCTION(bbs_search_articles);#define PHP_BBS_ARTICLE_EXPORT_FUNCTIONS \    PHP_FE(bbs_get_records_from_id, NULL) \    PHP_FE(bbs_get_records_from_num, NULL) \    PHP_FE(bbs_get_filename_from_num, NULL) \    PHP_FE(bbs_get_threads_from_id, NULL) \    PHP_FE(bbs_get_threads_from_gid, fifth_arg_force_ref_00011) \    PHP_FE(bbs_countarticles, NULL) \    PHP_FE(bbs_getarticles, NULL) \    PHP_FE(bbs_search_articles, NULL)#endif //PHP_BBS_ARTICLE_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?