Wallogit.com
2017 © Pedro Peláez
Simple access array with -> notation., (*1)
$arrow = new Arrow(['something' => 1]); echo $arror->something;
Output:, (*2)
1
$arrow = new Arrow(['something' => 1], true); echo $arror->something->otherthing;
Output:, (*3)
''
$arrow = new Arrow(['something' => 1], true); var_dump($arror->something());
Output:, (*4)
int(1)