/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php abstract class myAbstractClass { //Properties must be protected protected $foo; abstract public function __construct(); //Private methods can't be abstract; they must be either public or protected. abstract public function myfunction(); } ?>