Skip to content

Instantly share code, notes, and snippets.

@akondas
Created June 16, 2015 21:47
Show Gist options
  • Select an option

  • Save akondas/2abdba38e0e3779d076e to your computer and use it in GitHub Desktop.

Select an option

Save akondas/2abdba38e0e3779d076e to your computer and use it in GitHub Desktop.
<?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