本文整理汇总了PHP中Cloud::install_module方法的典型用法代码示例。如果您正苦于以下问题:PHP Cloud::install_module方法的具体用法?PHP Cloud::install_module怎么用?PHP Cloud::install_module使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cloud
的用法示例。
在下文中一共展示了Cloud::install_module方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: exit
//模块已存在
if (Module::exists($command['appid'])) {
exit(serialize(array('return' => 'exist', 'appid' => $command['appid'])));
}
//创建模块目录
$dir = create_dir($module, TRUE, 0777);
if ($dir === FALSE) {
exit(serialize(array('return' => 'permission', 'catalog' => array('./module/'))));
}
//测试读写权限
$status = Cloud::valid_perm($module);
if (count($status)) {
exit(serialize(array('return' => 'permission', 'catalog' => $status)));
}
//安装模块
$status = Cloud::install_module($command['package'], $command['hash'], $command['appid'], $command['option']['install']['ignore']);
//安装成功
if ($status > 0) {
//执行安装脚本
Module::install($command['appid']);
//更新模块缓存
Module::search();
exit(serialize(array('return' => 'success', 'appid' => $command['appid'], 'status' => 'success')));
} else {
//删除目录
delete_dir($module);
exit(serialize(array('return' => 'package', 'appid' => $command['appid'], 'status' => $status, 'lastfile' => Cloud::$lastfile)));
}
break;
////////////////////////////
//模块升级