本文整理汇总了PHP中OS::get方法的典型用法代码示例。如果您正苦于以下问题:PHP OS::get方法的具体用法?PHP OS::get怎么用?PHP OS::get使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OS
的用法示例。
在下文中一共展示了OS::get方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: OS
$OS = new OS($Capone->get('osID'));
$StorageGroup = new StorageGroup($Image->get('storageGroupID'));
$StorageNode = $StorageGroup->getMasterStorageNode();
switch ($Image->get('imageTypeID')) {
case 1:
$imgType = 'n';
break;
case 2:
$imgType = 'mps';
break;
case 3:
$imgType = 'mpa';
break;
case 4:
$imgType = 'dd';
break;
}
$imgPartitionType = $Image->getImagePartitionType()->get('type');
$imgFormat = $Image->get('format');
$ret[] = base64_encode($Image->get('path') . '|' . $OS->get('id') . '|' . $imgType . '|' . $imgPartitionType . '|' . $imgFormat);
}
}
throw new Exception(count($ret) > 0 ? implode("\n", $ret) : base64_encode('null'));
} else {
throw new Exception(base64_encode('null'));
}
}
}
} catch (Exception $e) {
print $e->getMessage();
}