本文整理汇总了PHP中QuickBooks_Utilities::fetchQuickBooksID方法的典型用法代码示例。如果您正苦于以下问题:PHP QuickBooks_Utilities::fetchQuickBooksID方法的具体用法?PHP QuickBooks_Utilities::fetchQuickBooksID怎么用?PHP QuickBooks_Utilities::fetchQuickBooksID使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QuickBooks_Utilities
的用法示例。
在下文中一共展示了QuickBooks_Utilities::fetchQuickBooksID方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: hasQuickBooksID
/**
* Tell whether or not a given object has a ListID or TxnID associated with it
*
* * Note *
* This function *does not* query QuickBooks, it only queries the internal
* mapping of QuickBooks IDs to PRIMARY KEYS. The mappings can be created
* with the {@link QuickBooks_Utilities::createMapping()} method and the API
* tries to automatically create the mapping when you add or update an
* object and provide a PRIMARY KEY when calling the ->add* or ->update*
* method.
*
* @param string $object_type
* @param mixed $app_ID
* @return boolean
*/
public static function hasQuickBooksID($dsn, $user, $object_type, $app_ID)
{
if (QuickBooks_Utilities::fetchQuickBooksID($dsn, $user, $object_type, $app_ID)) {
return true;
}
return false;
}