Etienne Kneuss

home » repository » php » php.net » lsb » lsb2.php
Tree:
school
mp3
php
sample
publications
Math_Derivative
Math_Expression
ircbot
php.net
docweb
lsb
lsb3.php
lsb2.php
lsb1.php
check-acronyms.php
spam_tickets.sql.txt
spam-protection.php
genphpt.php
fix-whitespace.php
generrorlinks.php
remove-ordie.php
docbkphp.vim
script-skel.php
cvslogger.php
generateCvslogs.php
images
dump

Source code raw phps

    <?php class A {     public $test = 1;     static function test() {         // make sure that pop works here         B::who();         static::who();     }     static function who() {         echo "A";     } } class B extends A {     static function who() {         echo "B";     } } echo A::test(); // B A 

Comments

There is currently no comment here.

Add a comment

Username:

Spam Challenge: 8+10=?

Comment: