本文整理汇总了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);
}
}