Created
June 16, 2015 21:47
-
-
Save akondas/2abdba38e0e3779d076e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // co zwróci podane wyrażenie ? | |
| $obj->$properties['name']; | |
| // w PHP 5.6 | |
| $obj->{$properties['name']} | |
| // w PHP 7 | |
| {$obj->$properties}['name'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment