本文整理汇总了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;
}
示例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;
}
示例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;
}
示例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');
示例5: hasValue
protected function hasValue($values, $name)
{
if (array_key_exists($name, $values)) {
return true;
}
return sfToolkit::hasArrayValueForPath($values, $name);
}