Skip to content

Instantly share code, notes, and snippets.

@twhittakerdev
Created March 18, 2012 19:50
Show Gist options
  • Save twhittakerdev/2080399 to your computer and use it in GitHub Desktop.
Save twhittakerdev/2080399 to your computer and use it in GitHub Desktop.
Class in php
<?php
class Student
{
var $name;
var $age;
function Test()
{
echo 'name: ', $this->name, '<br>';
echo 'age: ', $this->age, '<br>';
}
}
function Main()
{
$obj = new Student;
$obj->name = 'twhittakerdev.com';
$obj->age = 99;
$obj->Test();
$obj = null;
}
Main();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment