Skip to content

Instantly share code, notes, and snippets.

@simplyniceweb
Last active March 9, 2016 03:38
Show Gist options
  • Save simplyniceweb/d8672fc4a0bc317a1e56 to your computer and use it in GitHub Desktop.
Save simplyniceweb/d8672fc4a0bc317a1e56 to your computer and use it in GitHub Desktop.
sample class
<?php
class Friends
{
function jared($name = null) {
return "My name is $name";
}
}
$friend = new Friends();
echo $friend->jared("Jaylord Ferrer.");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment