Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我真的不明白为什么我会收到这个错误,我有
extension=php_sqlite.dll extension=php_sqlite3.dll
我正在使用 php 版本 5.4.3 的 wamp
我收到以下错误调用未定义函数 sqlite_libversion()
我有代码
echo sqlite_libversion();
我已经尝试过其他论坛和主题,但所有这些都是关于忘记启用模块,为什么我仍然有问题?
您似乎在 Sqlite3 中寻找的方法是:
<?php print_r(SQLite3::version()); ?>
哪个应该返回:
Array ( [versionString] => 3.5.9 [versionNumber] => 3005009 )
根据http://php.net/manual/en/sqlite3.version.php上的文档。
此函数是(旧)SQLite 2 扩展的一部分,PHP 5.4 不支持该扩展 - 您只能使用 SQLite3。