本文整理汇总了PHP中phodevi::is_vendor_string方法的典型用法代码示例。如果您正苦于以下问题:PHP phodevi::is_vendor_string方法的具体用法?PHP phodevi::is_vendor_string怎么用?PHP phodevi::is_vendor_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类phodevi
的用法示例。
在下文中一共展示了phodevi::is_vendor_string方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: auto_generate_results_identifier
public function auto_generate_results_identifier()
{
// If the save result identifier is empty, try to come up with something based upon the tests being run.
$results_identifier = null;
$subsystem_r = array();
$subsystems_to_test = $this->subsystems_under_test();
if (!$this->is_new_result_file) {
$result_file_intent = pts_result_file_analyzer::analyze_result_file_intent($this->result_file);
if (is_array($result_file_intent) && $result_file_intent[0] != 'Unknown') {
array_unshift($subsystems_to_test, $result_file_intent[0]);
}
}
foreach ($subsystems_to_test as $subsystem) {
$components = pts_result_file_analyzer::system_component_string_to_array(phodevi::system_hardware(true) . ', ' . phodevi::system_software(true));
if ($subsystem != null && isset($components[$subsystem])) {
$subsystem_name = pts_strings::trim_search_query($components[$subsystem]);
if (phodevi::is_vendor_string($subsystem_name) && !in_array($subsystem_name, $subsystem_r)) {
array_push($subsystem_r, $subsystem_name);
}
if (isset($subsystem_r[2]) || isset($subsystem_name[19])) {
break;
}
}
}
if (isset($subsystem_r[0])) {
$results_identifier = implode(' - ', $subsystem_r);
}
if (empty($results_identifier) && !$this->batch_mode) {
$results_identifier = phodevi::read_property('cpu', 'model') . ' - ' . phodevi::read_property('gpu', 'model') . ' - ' . phodevi::read_property('motherboard', 'identifier');
}
if (strlen($results_identifier) > 55) {
$results_identifier = substr($results_identifier, 0, 54);
$results_identifier = substr($results_identifier, 0, strrpos($results_identifier, ' '));
}
if (empty($results_identifier)) {
$results_identifier = date('Y-m-d H:i');
}
$this->results_identifier = $results_identifier;
return $results_identifier;
}
示例2: is_product_string
public static function is_product_string($product)
{
return phodevi::is_vendor_string($product) && !pts_strings::has_in_istring($product, array('VBOX', 'QEMU', 'Virtual', 'Family', '440BX', 'VMware', ' Gen', 'Core IGP'));
}