本文整理汇总了PHP中Cloud::init方法的典型用法代码示例。如果您正苦于以下问题:PHP Cloud::init方法的具体用法?PHP Cloud::init怎么用?PHP Cloud::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cloud
的用法示例。
在下文中一共展示了Cloud::init方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: rawurlencode
{
global $_G;
//序列化
$dataset = rawurlencode(authcrypt(serialize($command), VI_SECRET));
//发送请求
$return = @file_get_contents($_G['project']['home'] . 'api.php?action=cloud&domain=' . VI_HOST . '&execute=' . $dataset);
//反序列化
$content = $return ? unserialize($return) : array('return' => 'respond');
return $content;
}
/*
验证当前版本信息
*/
public static function licence()
{
global $_G;
$text = file_get_contents($_G['project']['home'] . 'api.php?action=service&execute=business&version=' . $_G['product']['version'] . '&charset=' . $_G['product']['charset'] . '&domain=' . urlencode(VI_HOST) . '&secret=' . VI_SECRET);
$data = unserialize($text);
if ($data) {
$file = VI_ROOT . "config/licence.php";
//写入到缓存
create_file($file, '<?php $_G[\'licence\'] = ' . var_export($data, TRUE) . ';?>');
//刷新缓存
$_G['licence'] = $data;
}
return $data;
}
}
//初始化
Cloud::init();