I have doubt in following question.
Q. What OOP construct <B>unavailable</B> in PHP 4 does the following script approximate?
<?php
class my_class
{
function my_funct ($my_param)
{
user_error ("Please define me", E_ERROR);
}
function b()
{
return 10;
}
}
?>
A. Multiple inheritance
B. Interfaces
C. Abstract methods
D. Private methods
E. Function overloading
Can anyone explain this to me ... what is being tried to ask in this question .. and what is the correct answer & why.
Thanks for your time.
Vivek