Q:
PHP find output programs (Class & Objects) | set 2
belongs to collection: PHP Find Output Programs
PHP Find Output Programs
- PHP find output programs (basics) | set 1
- PHP find output programs (basics) | set 2
- PHP find output programs (basics) | set 3
- PHP find output programs (Superglobals) | set 1
- PHP find output programs (conditional statements) | set 1
- PHP find output programs (conditional statements) | set 2
- PHP find output programs (conditional statements) | set 3
- PHP find output programs (switch Statement) | set 1
- PHP find output programs (switch Statement) | set 2
- PHP find output programs (switch Statement) | set 3
- PHP find output programs (Operators) | set 1
- PHP find output programs (Operators) | set 2
- PHP find output programs (Operators) | set 3
- PHP find output programs (Loops) | set 1
- PHP find output programs (Loops) | set 2
- PHP find output programs (Loops) | set 3
- PHP find output programs (Loops) | set 4
- PHP find output programs (Arrays) | set 1
- PHP find output programs (Arrays) | set 2
- PHP find output programs (Arrays) | set 3
- PHP find output programs (User-defined functions) | set 1
- PHP find output programs (User-defined functions) | set 2
- PHP find output programs (User-defined functions) | set 3
- PHP find output programs (String Functions) | set 1
- PHP find output programs (String Functions) | set 2
- PHP find output programs (Number Functions) | set 1
- PHP find output programs (Math Functions) | set 1
- PHP find output programs (Math Functions) | set 2
- PHP find output programs (Date and Time) | set 1
- PHP find output programs (define Constant) | set 1
- PHP find output programs (static variables, classes, methods) | set 1
- PHP find output programs (static variables, classes, methods) | set 2
- PHP find output programs (Regular Expressions) | set 1
- PHP find output programs (Exceptions) | set 1
- PHP find output programs (Exceptions) | set 2
- PHP find output programs (Filters) | set 1
- PHP find output programs (Filters) | set 2
- PHP find output programs (JSON) | set 1
- PHP find output programs (const Keyword) | set 1
- PHP find output programs (Class & Objects) | set 1
- PHP find output programs (Class & Objects) | set 2
- PHP find output programs (Class & Objects) | set 3
- PHP find output programs (Constructors and Destructors) | set 1
- PHP find output programs (Constructors and Destructors) | set 2
- PHP find output programs (Constructors and Destructors) | set 3
- PHP find output programs (Inheritance) | set 1
- PHP find output programs (Inheritance) | set 2
- PHP find output programs (Inheritance) | set 3
Answer 1:
Output:
Explanation:
In the above program, we created a class Sample that contains data member $val. Here, we also created three methods set(), ADD(), and print().
The set() method is used to set the value of data member $val, and the ADD() method is used to add the value of the specified object with the value of the current object and return the temporary object that contains the addition of both.
Then we created two objects $obj1 and $obj2 initialized with 100 and 200.
$obj3 = $obj1->ADD($obj2);
In the above statement, $obj3 assigned by the object returned by method ADD() then print the value using the print() method.
Answer 2:
Output:
Explanation:
In the above program, we created a class Sample that contains data member $val. Here, we also created three methods set() and print().
Here, we created an array of objects and initialized with 10 and 20 and print values of using an index with an object.
Answer 3:
Output:
Explanation:
The above program will generate syntax error, because of the below statement.
*($obj3).print();
In the above statement, we tried to access print() using the pointer, but pointers are not supported in PHP.
Answer 4:
Output:
Explanation:
In the above program, we are trying to implement a cascaded function call, but here object $obj will call fun1(), other function will not call. To implement a cascaded function call, then we need to use $this.
Answer 5:
Output:
Explanation:
In the above program, we created a class Sample that contains three methods fun1(), fun2(), and fun3(). Each method returns the current object using $this. Then finally we can implement a cascaded function call using $this.
need an explanation for this answer? contact us directly to get an explanation for this answer