Skip to content

Instantly share code, notes, and snippets.

@jjsty1e
Created July 15, 2015 06:48
Show Gist options
  • Save jjsty1e/d575f0a89488c9a54927 to your computer and use it in GitHub Desktop.
Save jjsty1e/d575f0a89488c9a54927 to your computer and use it in GitHub Desktop.
<?php
echo "hello";
class Jake{
private $name;
public function set($name){
$this->name = $name;
}
}
$man = new Jake('Jakesoft');
echo $man->name;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment