當前位置: 首頁>>代碼示例>>PHP>>正文


PHP sfToolkit::hasArrayValueForPath方法代碼示例

本文整理匯總了PHP中sfToolkit::hasArrayValueForPath方法的典型用法代碼示例。如果您正苦於以下問題:PHP sfToolkit::hasArrayValueForPath方法的具體用法?PHP sfToolkit::hasArrayValueForPath怎麽用?PHP sfToolkit::hasArrayValueForPath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在sfToolkit的用法示例。


在下文中一共展示了sfToolkit::hasArrayValueForPath方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: has

 /**
  * Indicates whether or not a parameter exists.
  *
  * @param  string $name  A parameter name
  *
  * @return bool true, if the parameter exists, otherwise false
  */
 public function has($name)
 {
     if (array_key_exists($name, $this->parameters)) {
         return true;
     } else {
         return sfToolkit::hasArrayValueForPath($this->parameters, $name);
     }
     return false;
 }
開發者ID:bigcalm,項目名稱:urlcatcher,代碼行數:16,代碼來源:sfParameterHolder.class.php

示例2: has

 /**
  * Indicates whether or not a parameter exists.
  *
  * @param  string $name  A parameter name
  *
  * @return bool true, if the parameter exists, otherwise false
  */
 public function has($name)
 {
     if (isset($this->parameters[$name])) {
         return true;
     } else {
         return sfToolkit::hasArrayValueForPath($this->parameters, $name);
     }
     return false;
 }
開發者ID:ajith24,項目名稱:ajithworld,代碼行數:16,代碼來源:sfParameterHolder.class.php

示例3: has

 public function has($name, $ns = null)
 {
     if (!$ns) {
         $ns = $this->default_namespace;
     }
     if (isset($this->parameters[$ns][$name])) {
         return true;
     } else {
         if (isset($this->parameters[$ns])) {
             return sfToolkit::hasArrayValueForPath($this->parameters[$ns], $name);
         }
     }
     return false;
 }
開發者ID:BGCX261,項目名稱:zoorestaurant-svn-to-git,代碼行數:14,代碼來源:config_core_compile.yml.php

示例4: array

$t->diag('::hasArrayValueForPath()');

$t->is(sfToolkit::hasArrayValueForPath($arr, 'foobar'), true, '::hasArrayValueForPath() returns true if the path exists');
$t->is(sfToolkit::hasArrayValueForPath($arr, 'barfoo'), false, '::hasArrayValueForPath() returns false if the path does not exist');

$t->is(sfToolkit::hasArrayValueForPath($arr, 'foo[bar][baz]'), true, '::hasArrayValueForPath() works with deep paths');
$t->is(sfToolkit::hasArrayValueForPath($arr, 'foo[bar][bar]'), false, '::hasArrayValueForPath() works with deep paths');

$t->is(sfToolkit::hasArrayValueForPath($arr, 'foo[]'), true, '::hasArrayValueForPath() accepts a [] at the end to check for an array');
$t->is(sfToolkit::hasArrayValueForPath($arr, 'foobar[]'), false, '::hasArrayValueForPath() accepts a [] at the end to check for an array');
$t->is(sfToolkit::hasArrayValueForPath($arr, 'barfoo[]'), false, '::hasArrayValueForPath() accepts a [] at the end to check for an array');

$t->is(sfToolkit::hasArrayValueForPath($arr, 'bar[1]'), true, '::hasArrayValueForPath() can take an array indexed by integer');
$t->is(sfToolkit::hasArrayValueForPath($arr, 'bar[2]'), false, '::hasArrayValueForPath() can take an array indexed by integer');

$t->is(sfToolkit::hasArrayValueForPath($arr, 'foo[bar][baz][booze]'), false, '::hasArrayValueForPath() is not fooled by php mistaking strings and array');

// ::getArrayValueForPath()
$t->diag('::getArrayValueForPath()');

$t->is(sfToolkit::getArrayValueForPath($arr, 'foobar'), 'foo', '::getArrayValueForPath() returns the value of the path if it exists');
$t->is(sfToolkit::getArrayValueForPath($arr, 'barfoo'), null, '::getArrayValueForPath() returns null if the path does not exist');
$t->is(sfToolkit::getArrayValueForPath($arr, 'barfoo', 'bar'), 'bar', '::getArrayValueForPath() takes a default value as its third argument');

$t->is(sfToolkit::getArrayValueForPath($arr, 'foo[bar][baz]'), 'foo bar', '::getArrayValueForPath() works with deep paths');
$t->is(sfToolkit::getArrayValueForPath($arr, 'foo[bar][bar]'), false, '::getArrayValueForPath() works with deep paths');
$t->is(sfToolkit::getArrayValueForPath($arr, 'foo[bar][bar]', 'bar'), 'bar', '::getArrayValueForPath() works with deep paths');

$t->is(sfToolkit::getArrayValueForPath($arr, 'foo[]'), array('bar' => array('baz' => 'foo bar')), '::getArrayValueForPath() accepts a [] at the end to check for an array');
$t->is(sfToolkit::getArrayValueForPath($arr, 'foobar[]'), null, '::getArrayValueForPath() accepts a [] at the end to check for an array');
$t->is(sfToolkit::getArrayValueForPath($arr, 'barfoo[]'), null, '::getArrayValueForPath() accepts a [] at the end to check for an array');
開發者ID:nationalfield,項目名稱:symfony,代碼行數:31,代碼來源:sfToolkitTest.php

示例5: hasValue

 protected function hasValue($values, $name)
 {
     if (array_key_exists($name, $values)) {
         return true;
     }
     return sfToolkit::hasArrayValueForPath($values, $name);
 }
開發者ID:WIZARDISHUNGRY,項目名稱:symfony,代碼行數:7,代碼來源:sfFillInForm.class.php


注:本文中的sfToolkit::hasArrayValueForPath方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。