Skip to content

Instantly share code, notes, and snippets.

@eddiezane
Created November 11, 2014 05:06
Show Gist options
  • Save eddiezane/6f0a6aafb79b2b5f1691 to your computer and use it in GitHub Desktop.
Save eddiezane/6f0a6aafb79b2b5f1691 to your computer and use it in GitHub Desktop.
<?php
class MyClass {
public $myVar = "Hello world\n";
public function sayHello() {
echo $this->myVar;
}
}
$instance = new MyClass();
$instance->sayHello();
// Hello world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment