本文整理汇总了PHP中arr::set_key_path方法的典型用法代码示例。如果您正苦于以下问题:PHP arr::set_key_path方法的具体用法?PHP arr::set_key_path怎么用?PHP arr::set_key_path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类arr
的用法示例。
在下文中一共展示了arr::set_key_path方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: as_array
/**
* Returns the form as an array of input names and values.
*
* @return array
*/
public function as_array()
{
$this->as_array_data = array();
// This will dig through the Formation classes and return the values
$this->process_inputs(array_merge($this->hidden, $this->inputs));
foreach (array_keys($this->as_array_data) as $key) {
if (preg_match_all("#\\[([^\\]]+)\\]#", $key, $matches)) {
$original_key = $key;
$keys = $matches[1];
array_unshift($keys, trim(substr($key, 0, strpos($key, "["))));
$this->as_array_data = arr::set_key_path($this->as_array_data, $keys, $this->as_array_data[$original_key]);
unset($this->as_array_data[$original_key]);
}
}
return $this->as_array_data;
}
示例2: set_key_path
/**
* Sets the key path of an array to the specified value
*
* @param mixed pass in an key path, keys separated by decimals, or an array of keys.
* @return array array with the key path set
*/
public static function set_key_path($arr, $path, $value)
{
if (!is_array($path)) {
$path = explode(".", $path);
}
if (count($path) == 1) {
$arr[$path[0]] = $value;
} else {
$key = array_shift($path);
$arr[$key] = arr::set_key_path($arr[$key], $path, $value);
}
return $arr;
}