本文整理汇总了PHP中check_update_script函数的典型用法代码示例。如果您正苦于以下问题:PHP check_update_script函数的具体用法?PHP check_update_script怎么用?PHP check_update_script使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了check_update_script函数的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run_script_update
function run_script_update($script_name, $script_php, $poll_version, $context, $php_format = 1, $sub_folder = "")
{
$php_file = get_update_script($script_php, $poll_version, $context);
if (empty($php_file) == TRUE) {
return ' - <strong>No Update Available</strong>...<br><br>';
} else {
// File exist, is the download valid?
$sha_check = check_update_script($script_name, $script_php, $php_file, $poll_version, $context);
if ($sha_check == FALSE) {
return ' - <strong>ERROR: Unable to Download File Properly</strong>...<br><br>';
} else {
$update_status .= $sha_check;
if ($php_format == 1) {
// PHP Files are downloaded as text, then renamed to the .php extension
$update_status .= install_update_script($script_php . '.php', $php_file);
} else {
if (empty($sub_folder) == FALSE) {
// This file is installed to a sub-folder
$update_status .= install_update_script("{$sub_folder}/" . $script_php, $php_file);
} else {
$update_status .= install_update_script($script_php, $php_file);
}
}
return $update_status;
}
}
}