<?php abstract class cOlolo{ static function dontDoIt(){ print "wow"; } abstract function doIt(); } cOlolo::dontDoIt(); ?>