Object Oriented Programming in PHP Part6(Static Members)

Поділитися
Вставка
  • Опубліковано 9 лис 2024

КОМЕНТАРІ • 29

  • @ashutoshsingh9255
    @ashutoshsingh9255 Місяць тому

    Because of you I have successfully done two job switches. Great sir, your work is highly appreciated🙏

  • @ravikumarphad8785
    @ravikumarphad8785 2 роки тому +1

    one of the most simplest, clearly understanding and most explained ....thank you Sir ......it is very useful

  • @bhaktipandey3657
    @bhaktipandey3657 2 роки тому

    Bhout better hai sir thank you soo much because all topic by clear

  • @myadvise857
    @myadvise857 4 роки тому

    I am wating

  • @JamateSirajiaFaisalabad
    @JamateSirajiaFaisalabad Рік тому

    Useful Video

  • @hassanamanullah4251
    @hassanamanullah4251 Місяць тому

    thanks

  • @prajwalhallale
    @prajwalhallale 2 роки тому

    Sir aap great ho.❤

  • @ankitmanmode2474
    @ankitmanmode2474 Рік тому

    Best video

  • @Rajeshkumar-mo1uc
    @Rajeshkumar-mo1uc 3 роки тому

    helpfull videos

  • @rohanborse2969
    @rohanborse2969 4 роки тому +2

    It was simple and short ..Thanks for sharing.
    Guys i request u to please do subscribe and share videos.
    It was really help to those who wants to learn web technologies.

  • @myadvise857
    @myadvise857 4 роки тому +1

    Good job sir

  • @abhisingh2042
    @abhisingh2042 Рік тому

    Interface me jitne function hai un sab ko use krna hota hai main class me aur inheritance me jaruri nhi hai ki aapne extend kiya hai to uske function ko call krna hi padega.
    1. Problem :- hame use to interface hi krna hai aur same interface ko 2 alag alag class me use krna hai lekin ek class me sirf ek function ka use hai aur dusre me sirf dusre ka kya kre ese case me

  • @pvcool123
    @pvcool123 4 роки тому

    Thank you very much .... Please make video's on oop simple project

  • @rizwanrangrej2701
    @rizwanrangrej2701 4 роки тому

    Love you sir
    ❤️

  • @tusarweb204
    @tusarweb204 4 роки тому +1

    Sir cms bare me kuch video dalo

  • @surajvaghela4106
    @surajvaghela4106 4 роки тому

    Sir PHP oops me ek pura project banayiye please

  • @RNClass1
    @RNClass1 4 роки тому

    सर SQL मे हम 9 table join कर सकते क्या

    • @ProgrammingwithVishal
      @ProgrammingwithVishal  4 роки тому

      Bilkul kar sakte ho, per speed slow ho jayegi. Uske liye indexes use karne padegi.

  • @afzalali5242
    @afzalali5242 3 роки тому

    Where use static function and variables

  • @mix5497
    @mix5497 Рік тому

    Benefits tho btaa do

  • @asadqureshi1763
    @asadqureshi1763 2 роки тому

    can you explain this.?

  • @abhi6679
    @abhi6679 Місяць тому

    Please maintain a gap between your mouth and mic because it create irritaing sound

  • @Mehedihasan-rahat
    @Mehedihasan-rahat Рік тому

    class Myclass{
    public $name = 'mehedi';
    public $age = 43;
    function myfunc(){
    return $this->name.$this->age;
    }
    static function mymessage(){
    $percentage = 100;
    $profession = 'web developer';
    echo 'I will be a'.$percentage.'%'.$profession;
    }
    }
    $obj = new Myclass;
    echo $obj->myfunc();
    //echo Myclass::myfunc();
    echo Myclass::mymessage();
    In this code there is no issue about constructor but when a function body contains self contain than there is no require to create class object just to consider static .. 😀