Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Last active August 29, 2015 14:18
Show Gist options
  • Select an option

  • Save kjohnson/6727568591f917608714 to your computer and use it in GitHub Desktop.

Select an option

Save kjohnson/6727568591f917608714 to your computer and use it in GitHub Desktop.
Assign and return a property value in a single line
class Test {
public $var;
public function get_var() {
return $this->var = "Hello, world!";
}
}
$test = new Test();
echo $test->get_var();
echo $test->var;
//result: Hello, world!Hello, world!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment