本文整理汇总了PHP中ArrayHelper::is_associative方法的典型用法代码示例。如果您正苦于以下问题:PHP ArrayHelper::is_associative方法的具体用法?PHP ArrayHelper::is_associative怎么用?PHP ArrayHelper::is_associative使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ArrayHelper
的用法示例。
在下文中一共展示了ArrayHelper::is_associative方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __parse_block_into_array
function __parse_block_into_array ()
{
$hash = array();
while ($this->__index < count($this->__elements))
{
$element = &$this->__elements[$this->__index];
$this->__index++;
$key = Inflector::underscore($element['tag']);
$attributes = array();
if (isset($element['attributes']))
{
foreach ($element['attributes'] as $k => $v)
$attributes[strtolower($k)] = $v;
}
$value = null;
switch($element['type'])
{
case 'open':
$value = $this->__parse_block_into_array();
break;
case 'complete':
$value = isset($element['value']) ? $element['value'] : '';
if (isset($attributes['encoding']) && $attributes['encoding'] == 'base64')
$value = base64_decode($value);
break;
case 'close':
return $hash;
default:
// ignore other element types
}
if (!is_null($value))
{
if (isset($hash[$key]))
{
if (!is_array($hash[$key]) || ArrayHelper::is_associative($hash[$key]))
$hash[$key] = array($hash[$key], $value);
else
array_push($hash[$key], $value);
}
else
$hash[$key] = $value;
}
}
return $hash;
}
示例2: __find_all
function __find_all ($class)
{
$query_string = "";
if (count($class->attributes) > 0)
$query_string = "?" . join('&', array_map(create_function('$a,$b', 'return "$a=$b";'), array_keys($class->attributes), array_values($class->attributes)));
$response = $this->__request($class, 'GET', $query_string);
$parser = new XMLParser();
$array = $parser->parse_into_array($response->body);
$class_name = "SS" . $class->class_name();
$singular = Inflector::underscore($class->class_name());
$plural = Inflector::pluralize($singular);
$records = $array[$plural][$singular];
if (ArrayHelper::is_associative($records))
$records = array($records);
$objects = array();
foreach ($records as $attrs)
$objects[] = new $class_name($attrs);
return $objects;
}