当前位置: 首页>>代码示例>>PHP>>正文


PHP QuickBooks_Utilities::fnmatch方法代码示例

本文整理汇总了PHP中QuickBooks_Utilities::fnmatch方法的典型用法代码示例。如果您正苦于以下问题:PHP QuickBooks_Utilities::fnmatch方法的具体用法?PHP QuickBooks_Utilities::fnmatch怎么用?PHP QuickBooks_Utilities::fnmatch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在QuickBooks_Utilities的用法示例。


在下文中一共展示了QuickBooks_Utilities::fnmatch方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: listActions

 /**
  * List all of the QuickBooks actions the framework supports
  * 
  * @param string $filter
  * @param boolean $return_keys
  * @return array
  */
 public static function listActions($filter = null, $return_keys = false)
 {
     $startswith = array('QUICKBOOKS_IMPORT_', 'QUICKBOOKS_QUERY_', 'QUICKBOOKS_ADD_', 'QUICKBOOKS_MOD_', 'QUICKBOOKS_DEL_', 'QUICKBOOKS_VOID_');
     $constants = array();
     //$inter_key = 'QUICKBOOKS_INTERACTIVE_MODE';
     //$inter_val = QUICKBOOKS_INTERACTIVE_MODE;
     /*
     if (is_null($filter))
     {
     	if ($return_keys)
     	{
     		$constants[] = $inter_key;
     	}
     	else
     	{
     		$constants[] = $inter_val;
     	}
     }
     */
     /*
     else if ($return_keys and QuickBooks_Utilities::fnmatch($filter, $inter_key))
     {
     	$constants[] = $inter_key;
     }
     else if (!$return_keys and QuickBooks_Utilities::fnmatch($filter, $inter_val))
     {
     	$constants[] = $inter_val;
     }
     */
     foreach (get_defined_constants() as $constant => $value) {
         foreach ($startswith as $start) {
             if (substr($constant, 0, strlen($start)) == $start) {
                 if (!$return_keys) {
                     $constant = $value;
                 }
                 if (!is_null($filter)) {
                     if (QuickBooks_Utilities::fnmatch($filter, $constant)) {
                         $constants[] = $constant;
                     }
                 } else {
                     $constants[] = $constant;
                 }
             }
         }
     }
     sort($constants);
     return $constants;
 }
开发者ID:djeraseit,项目名称:quickbooks-php,代码行数:55,代码来源:Utilities.php

示例2: _fnmatch

 /**
  * Do some fancy string matching
  * 
  * @param string $pattern
  * @param string $str
  * @return boolean
  */
 protected function _fnmatch($pattern, $str)
 {
     return QuickBooks_Utilities::fnmatch($pattern, $str);
 }
开发者ID:djeraseit,项目名称:quickbooks-php,代码行数:11,代码来源:Object.php


注:本文中的QuickBooks_Utilities::fnmatch方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。