当前位置: 首页>>代码示例>>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;未经允许,请勿转载。