mprzytulski/arrow-path
Composer 安装命令:
composer require mprzytulski/arrow-path
包简介
README 文档
README
Simple access array with -> notation.
Examples
Basic example
$arrow = new Arrow(['something' => 1]); echo $arror->something;
Output:
1
Use naive mode
$arrow = new Arrow(['something' => 1], true); echo $arror->something->otherthing;
Output:
''
Get original value
$arrow = new Arrow(['something' => 1], true); var_dump($arror->something());
Output:
int(1)
统计信息
- 总下载量: 99
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2018-03-24