oop - compile external class in php

Solution:
//Try this it should work
include('A.php');
class B
{
public function test(){
$a= new A();
$a->getProperty();
}
}
$b = new B();
$b->test();
//OUTPUT Good job sir, You've won a free House!
Share solution ↓
Additional Information:
Link To Answer People are also looking for solutions of the problem: php undefined array key
Didn't find the answer?
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Similar questions
Find the answer in similar questions on our website.
Write quick answer
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.