Skip to content

Instantly share code, notes, and snippets.

@nfreader
Created February 19, 2014 16:21
Show Gist options
  • Select an option

  • Save nfreader/9095508 to your computer and use it in GitHub Desktop.

Select an option

Save nfreader/9095508 to your computer and use it in GitHub Desktop.
<?php
class user {
public $name = 'nfreader';
public $userid = 1;
public function displayName() {
echo $this->name;
}
}
$user = new user();
$user->displayName();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment