A Class with a Method : Class Method « Class « PHP
- PHP
- Class
- Class Method
A Class with a Method
<?php
class Item {
var $name = "item";
function getName() {
return "item";
}
}
$item = new Item ();
print $item->getName ();
?>
Related examples in the same category