本文整理匯總了PHP中utility::isLinux方法的典型用法代碼示例。如果您正苦於以下問題:PHP utility::isLinux方法的具體用法?PHP utility::isLinux怎麽用?PHP utility::isLinux使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類utility
的用法示例。
在下文中一共展示了utility::isLinux方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: fullFileRestore
/**
* Restore from full file backup zip
*
* @access public
* @return boolean
*/
public static function fullFileRestore($version)
{
$ext = '.zip';
$restore_file = $version . $ext;
if (file_exists(DIR_FS_WORK . 'updates/' . $restore_file)) {
// remove old zip extraction if any
$parent_dir = explode('/', DIR_FS_CATALOG);
if (is_dir(DIR_FS_WORK . 'updates/' . $parent_dir[1])) {
self::rmdir_r(DIR_FS_WORK . 'updates/' . $parent_dir[1]);
}
// restore full file backup
if (utility::execEnabled() === true && utility::isLinux() === true) {
try {
// unzip the archive into work/updates/
exec(CFG_APP_UNZIP . ' ' . DIR_FS_WORK . 'updates/' . $restore_file . ' -d ' . DIR_FS_WORK . 'updates/');
//copy the files
exec('\\cp -fr ' . DIR_FS_WORK . 'updates' . DIR_FS_CATALOG . '* ' . DIR_FS_CATALOG);
// cleanup
if (is_dir(DIR_FS_WORK . 'updates/' . $parent_dir[1])) {
self::rmdir_r(DIR_FS_WORK . 'updates/' . $parent_dir[1]);
}
return array('rpcStatus' => 1);
} catch (Exception $e) {
return array('rpcStatus' => 0);
}
} else {
if (extension_loaded('zip')) {
try {
self::_extractZip(DIR_FS_WORK . 'updates/' . $restore_file, dirname(DIR_FS_CATALOG));
if (is_dir(DIR_FS_WORK . 'updates/' . $parent_dir[1])) {
self::rmdir_r(DIR_FS_WORK . 'updates/' . $parent_dir[1]);
}
return array('rpcStatus' => 1);
} catch (Exception $e) {
return array('rpcStatus' => 0);
}
} else {
return array('rpcStatus' => -1);
}
}
} else {
return array('rpcStatus' => -2);
}
}