Skip to content

Instantly share code, notes, and snippets.

@stevenjack
Created July 25, 2014 09:59
Show Gist options
  • Save stevenjack/a6308b98cdbba6d57785 to your computer and use it in GitHub Desktop.
Save stevenjack/a6308b98cdbba6d57785 to your computer and use it in GitHub Desktop.
<?php
class Test
{
protected $item = array('test');
public function output()
{
echo "Item without {}: $this->item[0]\n";
echo "item with {}: {$item[0]}";
}
}
$test = new Test();
echo $test->output();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment