入门:用于哈希映射(关联数组)遍历的函数

时间:2024-03-11 13:45:42
【文件属性】:

文件名称:入门:用于哈希映射(关联数组)遍历的函数

文件大小:5KB

文件格式:ZIP

更新时间:2024-03-11 13:45:42

PHP

进来 哈希映射(关联数组)遍历的函数。 在处理嵌套的关联结构时,遍历它们可能会很痛苦。 主要是因为需要进行大量的isset检查。 例如,要访问嵌套键['foo']['bar']['baz'] ,您必须执行以下操作: $ baz = ( isset ( $ data [ 'foo' ][ 'bar' ][ 'baz' ])) ? $ data [ 'foo' ][ 'bar' ][ 'baz' ] : null ; 已经足够! get-in提供了一种更好的方法: $ baz = igorw\get_in ( $ data , [ 'foo' , 'bar' , 'baz' ]); 安装 通过: $ composer require igorw/get-in: ~ 1.0 用法 进来 使用键列表从嵌套结构中检索值: $ users = [ [ 'name' => 'Ig


【文件预览】:
get-in-master
----composer.json(469B)
----.travis.yml(170B)
----tests()
--------GetInTest.php(4KB)
----LICENSE(1KB)
----src()
--------get_in.php(1KB)
----.gitignore(7B)
----CHANGELOG.md(305B)
----phpunit.xml.dist(391B)
----README.md(2KB)

网友评论