Files
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +00:00

13 lines
283 B
PHP

<?php
class Example
{
var $name = "Michael"; // Same as public but deprecated
public $age = 23; // Public property
protected $usercount; // Protected property
private function admin() // Private method
{
// Admin code goes here
}
}
?>