Thank you, I have learnt more about OOP in your first 2 videos than I have in many "whole" courses/books on the subject. I am not sure what it is that is different from the others, your teaching method or your explanations. Whatever it is, it is working. Thank you again. Now to continue with the rest of the videos.
@TheCodeholic4 жыл бұрын
Huge thanks buddy for that comment It means a lot.
@TheCodeholic4 жыл бұрын
I want to post your comment on my twitter. Are you ok with that?
@secret_one4 жыл бұрын
@@TheCodeholic Yes of course, please go ahead.
@hassanhafiz444 жыл бұрын
I just completed Bs CS (Hons) and I always think which tutor to prefer to my friends and young students. I have found one. I'm also watching these videos. I hated PHP but as a PHP developer. I have started to understand it through your videos. Thanks Sir.
@oraki135 жыл бұрын
Thank you for these detailed tutorial. I have searched for a long time for some basic tutorial and finally found one with yours. Thanks again for your efforts and keep going with those :))
@TheCodeholic5 жыл бұрын
Thank you.
@jahir_valverde4 жыл бұрын
Thanks for the free education videos, really appreciate it
@seanocarolan3593 жыл бұрын
Thanks dude! Love your Admin template also. Amazing!
@rpralica Жыл бұрын
Great explanations espetialy for getters and settres thank You
@Lyrik-Klinge2 жыл бұрын
very good explaination, THANKS!
@codingtostopprocrastinatio97482 жыл бұрын
Very good tutorial !
@catalinbiru83964 жыл бұрын
Thank you very much for this!
@kenjohnsiosan97072 жыл бұрын
Thank you sir.
@fernandoschneider33643 жыл бұрын
Very good class! Congratulations!
@TheCodeholic3 жыл бұрын
Glad you liked it!
@mubasharkhan54 жыл бұрын
Thank You for the video
@TheCodeholic4 жыл бұрын
You're welcome
@ilya_123__10 ай бұрын
Thank you!
@yacobee4 жыл бұрын
thank you
@TheCodeholic4 жыл бұрын
Welcome
@leicester15965 жыл бұрын
Hi thank you for those tutorials they are awesome. how do you set up the terminal on the right which updates after changes and provides outputs. Thanks.
@TheCodeholic5 жыл бұрын
PHP Storm has possibility to move windows around. The terminal does not automatically executes the code after changes. If it seems like this, probably it is because of video editing... I run the code manually in terminal. Thank you.
@leicester15965 жыл бұрын
that makes sense . Thanks.
@sharozekhan21864 жыл бұрын
thank you! Could you add comments/ annotations to the code for e.g. where you have used an instance etc.
@foreign-livingtheamericand8782 Жыл бұрын
hello, how do you echo multiple class function?
@bloomtechnologies11563 жыл бұрын
hello, nice tutorial but i didn't get an error when trying to access the private property of the class as you said, and i am wondering why
@ngoccannguyen41813 жыл бұрын
how to the result and the desktop name in terminal have the newline?
@dexterkarinyo91444 жыл бұрын
I have a question, why we need to set and get? I tried to put return on setYear public function setYear($year){ return $this->year = $year; } public function getYear(){ return $this->year; } echo $myCar->Setyear(2010); echo $myCar->getYear(); output: 20102010 why not exactly put return on the setYear? and why we need getYear and put the return thier? Thanks.
@TheCodeholic4 жыл бұрын
Purpose of the setters and getters is to run some logic before actually assign or return value. Setter accepts argument and saves the value in a property of the class. Getter returns the value of the property. If year must always be greater than 2000 you can write an if statement in setter and don't assign value if it is NOT greater than 2000. I hope this makes sense...
@dexterkarinyo91444 жыл бұрын
@@TheCodeholic Thank you so much. after this course oop , I will watch your yii framework.
@ThichThiHoc Жыл бұрын
Thanks you very much. How can I get the source code of this course, please?