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.
我正在编写一个 PHP 安装脚本,在安装应用程序之前我需要检查许多服务器设置。
那么,如果使用 PHP 在客户端的服务器上启用/禁用了 mysql 数据库扩展,我该如何检查它?
而且我还需要检查以下扩展Encryption,Zip Archive它们是否安装在服务器上。
Encryption
Zip Archive
请提出一种检查这些设置的方法。
只需执行这个:
extension_loaded('mysql');
如果返回true,则加载扩展。
true
我想这会对你有所帮助
extension_loaded('zip')
检查是否加载了 zip 扩展名。这将一次只检查一个扩展..