Skip to content

Instantly share code, notes, and snippets.

@pssubashps
Created July 12, 2016 07:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pssubashps/a48b06b3f421563d2b6b0b0bac78ce80 to your computer and use it in GitHub Desktop.
Save pssubashps/a48b06b3f421563d2b6b0b0bac78ce80 to your computer and use it in GitHub Desktop.
Access public property
<?php
class MyClass {
public $prop;
public $variable = "Hello";
function myfunc(){
$this->variable = 'value';
}
}
$obj = new MyClass;
echo $obj->variable;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment