View Single Post
Old 04-18-2009, 05:01 PM  
quantum-x
Confirmed User
 
quantum-x's Avatar
 
Join Date: Feb 2002
Location: ICQ: 251425 Fr/Au/Ca
Posts: 6,863
Quote:
Originally Posted by Killswitch View Post
PHP Code:
<?php
class person {
    var 
$email 'foo';
}
class 
user extends person {
    function 
showEmail() {
        echo 
$this->email;
    }
}
$u = new user();
$u->showEmail();
?>
Sure, but that's gone back to PHP4 style OOP...
quantum-x is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote