Object Oriented Programming in PHP Part7(Traits)

preview_player
Показать описание
Hello everyone! Welcome to my Object Oriented Programming in PHP series. In this video, I will explain to you why Traits required, what is Traits, what is Multiple Traits and how Multiple Traits works

#PHP #PHPOOP #Traits

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


I am a Digital Marketer by passion and a Developer by profession. With experience and expertise spanning around 10 years, in the Digital space.

Good amount of experience in development of web applications using PHP, .Net, JavaScript Library’s, Frameworks, CMS, API’s, Reporting tools and Payment Gateways. Skilled in digital viral marketing, technology innovation's, brand building and all phases of the Web development lifecycle with an expert in translating business requirements into technical solutions and fanatical about quality, usability, security, and scalability. Dealing with and resolving problems and issues which arise.
Рекомендации по теме
Комментарии
Автор

sir appne concept itne badiya clear karvaye hai ki ab koi dout hi nahi rahe

rishtekhojocom
Автор

i just clear my oop concept from vishal sir one of the best teaching methode he has and his students would be the lucky student if vishal sir will teach them

KhanoFayaz
Автор

Nice, this is the first time I found instead of things in traits. Awesome, thanks.

nomoreloss-nml
Автор

Thank you sir.ur teaching style is very simple.all can able to clear

lilimasethy
Автор

Learned lot of tricks and importance of traits, mostly i was surprised with alias section.
Thank you sir.

SudhirRajSR
Автор

thank you for this simple explanation sir really helpful

harshshah
Автор

Thank you ... This video helps me alot .. nice explanations in all Oop series.... Thank you

pvcool
Автор

Sir there is a slight error if you use the trait in the parent class you will be able to use its method in the child class also

Geminie-vm
Автор

Good video sir but I have a query ki agar mere pass 2 class hai aur 2 class 1 ko inherit krta h aur dono class me fun() name ka same function h but uska content different h aur mujhe use karna h class 1 ka fun() function to mein uska object banake ke sakta hu but agar trait me ek function h aur ek class me uss trait ko mene use kia h aur class me same name ka function h jo trait me h aur mujhe call Krna h trait vala function but uska object bn nhi skta aur me class ka object banaunga aur call karunga to vo to class ka function chalega jabki mujhe chalana h trait ma to hm kya kr skte h sir g please answer dena I want to know thank you

ankitgohel
Автор

You are doing great job sir thank you so much for sharing most most important info to us . Thank you☺️

amanrai
Автор

Sir no doubt aap bahut achha padhate hai, Maine aapki bahut si videos dekhi hai Aaj Tak koi doubt nhi hua. But
Sir mai trait use kar raha hun, wo bhi multiple level par Kam kar raha hai
Like inheritance.
Please help

themanishtiwari
Автор

sir big project kaise banaye with oops concepts

Abhishekyadav-mopy
Автор

trait Myclass1{
function myfunc1(){
echo 'function 1';
}
}
class Myclass2 {
use Myclass1;
function myfunc2(){
echo 'function 2';
}
}
class Myclass3 extends Myclass2{
function myfunc3(){
echo 'function 3';
}
}
class Myclass4 extends Myclass3{
function myfunc4(){
echo 'function 4';
}
}
$class4 = new Myclass4;
echo $class4->myfunc1();
$class2 = new Myclass2;
echo $class2->myfunc1();
But how it execute ... than???😃😃😃

Mehedihasan-rahat