mprzytulski / arrow-path
There is no license information available for the latest version (v0.4) of this package.
v0.4
2018-03-25 13:24 UTC
Requires
None
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is not auto-updated.
Last update: 2026-09-13 15:46:59 UTC
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)