Got a question on the topic? Please share it in the comment section below and our experts will answer it for you. For Edureka PHP Course curriculum, Visit our Website: bit.ly/2Mraoys
@TheSoulCrisis2 жыл бұрын
Thanks for the incredible rundown on PHP in record time with so much details! You really don't know what to study going into interviews and it's nice to have a guiding hand that just feeds you all the key information. Got an interview today that requires PHP knowledge.
@edurekaIN2 жыл бұрын
Hi : ) We really are glad to hear this ! Truly feels good that our team is delivering and making your learning easier :) Keep learning with us .Stay connected with our channel and team :) . Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
@critic35735 жыл бұрын
3:48 company's using php 4:20 questions
@MilMike3 жыл бұрын
question 38 ( 41:09 ) there is no such thing as overloading in PHP like it is used in few languages (eg Java, C#).. if you try to define a method with same name but different amount of parameters you get a "fatal error: cannot redeclare..." there are some ways to simulate overloading, like you possibly mentioned by using the magic function ( __call ) or you can create 1 method without any parameteres and call the method anyways with some params and get the parameters with func_get_args().
@YogeshSinghPatel4 жыл бұрын
It's really nice and awesome. Great job out there people.
@ameypote81484 жыл бұрын
Thank you so much the content delivered is crisp and promising!!
@Ahmed-ye5sd Жыл бұрын
Very nice. Thanks
@edurekaIN Жыл бұрын
Thank you too!
@emekatimothyiloba6992 жыл бұрын
Thank you for this
@edurekaIN2 жыл бұрын
You're welcome 😊 Keep learning with us!!
@polydimension36392 жыл бұрын
Thank you for the video.
@edurekaIN2 жыл бұрын
Thank you for you time in giving a feedback :) We are glad that you are learning from our videos! Stay connected with our channel :)
@mitalkhapandi86174 жыл бұрын
Exemplary explaination 👌
@padmashreeshelke67384 жыл бұрын
Nice content....usefull for interview
@ganeshtripathi17576 жыл бұрын
This video is very useful make this type of videos on all important languages.thanks alot
@MarioFletes4 жыл бұрын
very complete video, thank you
@rishabhshah88455 жыл бұрын
Awesome video 👍👍👍 what is different between => vs ->
@edurekaIN5 жыл бұрын
Hi Rishabh, tahnsk for the compliment. The double array operator is used as an access mechanism for arrays and the object operator -> is used in object scope to access methods and properties of an object.