• Call Us: +92-333-7276335
  • - Mail Us: info@shekztech.com

Plot 1177, Sector 31B - Crossing, Karachi, Sindh

Final Keyword in php

Please Login and enroll in this course to view the lesson.

Final keyword in PHP, yes we discuss the final keyword in this video you can better understand where and how can we use it.

class Cars{
    public function myMethod()
    {
        echo 'My method here';
    }
    final function myMethod2(){
        echo 'Parent Method';
    }
}   

class Honda extends Cars{
    function myMethod2()
    {
        echo 'Child Method..';
    }
}

$obj = new Honda();
$obj->myMethod2();