本文整理汇总了PHP中global_common::convertToInt方法的典型用法代码示例。如果您正苦于以下问题:PHP global_common::convertToInt方法的具体用法?PHP global_common::convertToInt怎么用?PHP global_common::convertToInt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类global_common
的用法示例。
在下文中一共展示了global_common::convertToInt方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
$orderProductProperty = 0;
foreach ($properties as $item) {
$group = $item[global_mapping::PropertyGroupID];
$groupID = global_common::convertToInt($group);
//is new group
if ($groupID <= 0) {
$searchGroup = $objPropertyGroup->getPropertyGroupByNameAndCat($group, $catalogueID);
if ($searchGroup) {
$groupID = $searchGroup[global_mapping::PropertyGroupID];
} else {
$groupID = $objPropertyGroup->insert($group, $group, $catalogueID, $orderGroup, $createdBy, null);
$orderGroup++;
}
}
$propertyName = $item[global_mapping::PropertyID];
$propertyID = global_common::convertToInt($propertyName);
//if is real propery name
if ($propertyID <= 0) {
$searchProperty = $objProperty->getPropertyByName($groupID, $propertyName);
if ($searchProperty) {
$propertyID = $searchProperty[global_mapping::PropertyID];
} else {
$propertyID = $objProperty->insert($groupID, $propertyName, null, null, $createdBy, null);
}
}
if ($propertyID) {
$objProductProperty->insert($resultID, $propertyID, $item[global_mapping::PropertyValue], $orderProductProperty, 11, $item[global_mapping::Status]);
$orderProductProperty++;
}
}
$arrHeader = global_common::getMessageHeaderArr($banCode);