php_sqlite3.h
来自「使PHP直接支持sqlite3数据库操作的扩展DLL」· C头文件 代码 · 共 54 行
H
54 行
#ifndef PHP_SQLITE3_H#define PHP_SQLITE3_H 1#define PHP_SQLITE3_VERSION "1.0"#define PHP_SQLITE3_EXTNAME "SQLITE3"//#include <sqlite3.h>#include <sqlite.h.in>PHP_MINIT_FUNCTION(sqlite3);PHP_MINFO_FUNCTION(sqlite3);PHP_FUNCTION(sqlite3_libversion);PHP_FUNCTION(sqlite3_open);PHP_FUNCTION(sqlite3_close);PHP_FUNCTION(sqlite3_errcode);PHP_FUNCTION(sqlite3_errmsg);PHP_FUNCTION(sqlite3_exec);PHP_FUNCTION(sqlite3_query);PHP_FUNCTION(sqlite3_changes);PHP_FUNCTION(sqlite3_bind_int);PHP_FUNCTION(sqlite3_bind_double);PHP_FUNCTION(sqlite3_bind_text);PHP_FUNCTION(sqlite3_bind_blob);PHP_FUNCTION(sqlite3_bind_null);PHP_FUNCTION(sqlite3_query_exec);PHP_FUNCTION(sqlite3_fetch);PHP_FUNCTION(sqlite3_fetch_array);PHP_FUNCTION(sqlite3_column_count);PHP_FUNCTION(sqlite3_column_name);PHP_FUNCTION(sqlite3_column_type);PHP_FUNCTION(sqlite3_query_close);PHP_FUNCTION(sqlite3_last_insert_rowid);PHP_FUNCTION(sqlite3_create_function);#define PHP_SQLITE3_FETCH_ASSOC 1#define PHP_SQLITE3_FETCH_INDEX 2extern zend_module_entry sqlite3_module_entry;#define phpext_sqlite3_ptr &sqlite3_module_entry#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?