[ create a new paste ] login | about

Link: http://codepad.org/21PYsB3H    [ raw code | fork ]

PHP, pasted on Sep 8:
<?php
class base {
    function traverseTable($table) {
        foreach ($table as $element) {
            $rowCnt++;
            $this->uniqueSearch($rowCnt);
        }
    }
}

class child1 extends base {
    function search($input) {
        //parse input, get $table
        // dummy for now:
        $table = Array(0,1,2,3);
        $this->traverseTable($table);
    }

    function uniqueSearch($rowCnt) {
         echo 'child1';
        //Do different things
    }
}

class child2 extends base {
    function search($input) {
        //parse input, get $table
        // dummy for now:
        $table = Array(0,1,2,3);
        $this->traverseTable($table);
    }

    function uniqueSearch($rowCnt) {
         echo 'child2';
        //Do different things
    }
}
?>


Output:
No errors or program output.


Create a new paste based on this one


Comments: