Skip to content

Instantly share code, notes, and snippets.

@gcoop
Created October 20, 2010 15:45
Show Gist options
  • Save gcoop/636664 to your computer and use it in GitHub Desktop.
Save gcoop/636664 to your computer and use it in GitHub Desktop.
<?php
var $data // is not; private $data, public $data and protected $data
class This
{
var $data;
function getData($key)
{
return $this->data[$key];
}
}
// Client Code
echo($this->data['foobar']);
echo($this->getData('footer')); // No difference except one jumps through more hoops and is slower to process. No point.
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment