$that php,将"this.that.other"之类的点语法转换为PHP中的多维数组

phaberest..

20

仅供参考在Laravel中,我们有一个array_set()辅助函数,可以转换为此函数

使用点表示法存储在数组中的方法

/**

* Set an array item to a given value using "dot" notation.

*

* If no key is given to the method, the entire array will be replaced.

*

* @param array $array

* @param string $key

* @param mixed $value

* @return array

*/

public static function set(&$array, $key, $value)

{

if (is_null($key)) {

return $array = $value;

}

$keys = explode('.', $key);

while (count($keys) > 1) {

$key = array_shift($keys);

// If the key doesn't exist at this depth, we will just create an empty array

// to hold the next value, allowing us to create the arrays to hold final

// values at the correct depth. Then we'll keep digging into the array.

if (! isset($array[$key]) || ! is_array($array[$key])) {

$array[$key] = [];

}

$array = &$array[$key];

}

$array[array_shift($keys)] = $value;

return $array;

}

这很简单

$array = ['products' => ['desk' => ['price' => 100]]];

array_set($array, 'products.desk.price', 200);

// ['products' => ['desk' => ['price' => 200]]]

您可以在文档中查看它

如果您需要使用点表示法来获取数据,则该过程会稍长一些,但是在一个平台上提供array_get()转换为此函数(实际上链接的源显示所有与辅助数组相关的类)

使用点表示法从数组中读取的方法

/**

* Get an item from an array using "dot" notation.

*

* @param \ArrayAccess|array $array

* @param string $key

* @param mixed $default

* @return mixed

*/

public static function get($array, $key, $default = null)

{

if (! static::accessible($array)) {

return value($default);

}

if (is_null($key)) {

return $array;

}

if (static::exists($array, $key)) {

return $array[$key];

}

if (strpos($key, '.') === false) {

return $array[$key] ?? value($default);

}

foreach (explode('.', $key) as $segment) {

if (static::accessible($array) && static::exists($array, $segment)) {

$array = $array[$segment];

} else {

return value($default);

}

}

return $array;

}

如你所见,它使用两个子方法,accessible()和exists()

/**

* Determine whether the given value is array accessible.

*

* @param mixed $value

* @return bool

*/

public static function accessible($value)

{

return is_array($value) || $value instanceof ArrayAccess;

}

/**

* Determine if the given key exists in the provided array.

*

* @param \ArrayAccess|array $array

* @param string|int $key

* @return bool

*/

public static function exists($array, $key)

{

if ($array instanceof ArrayAccess) {

return $array->offsetExists($key);

}

return array_key_exists($key, $array);

}

它最后使用的东西,但你可以跳过它,就是value()这样

if (! function_exists('value')) {

/**

* Return the default value of the given value.

*

* @param mixed $value

* @return mixed

*/

function value($value)

{

return $value instanceof Closure ? $value() : $value;

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值