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.
我是新手moodle。如果你们能在这里帮助我,真的会很开心。
moodle
我正在moodle中创建一个存储库插件,我需要mcrypt在moodle安装到机器上之前安装它。我想知道你们中是否有人能告诉我,如果没有安装 mcrypt,我该如何停止安装 Moodle,因为我不想修改 Moodle 的核心文件。
mcrypt
提前致谢...:)
使用扩展加载方法
<?php if (!extension_loaded('mcrypt')) { // do something if you don't have mcrypt } // run rest of script as normal with mcrypt installed