PHP Object-oriented oop-__call processing call errors

Source: Internet
Author: User
In program development, if the calling method does not exist when invoking an object's internal method, the program will go wrong, and then the program exit cannot continue execution. So, when the program calls the method that does not exist inside the object, we are prompted to call the method and the parameters used do not exist, but the program can continue to execute, at this time we will use the method called when the non-existent method "__call ()".

This is a test class with no properties or methods.
Class Test
{
}
Produces an object of the test class
$test = new test ();
Methods that do not exist in the calling object
$test->demo ("One", "one", "one", "three");
The program will not execute here
echo "This is a test
";
?>

The above example has the following error, the program is usually unable to continue execution;

Fatal error:call to undefined method Test::d Emo ()

Here we add the "__call ()" method, this method has 2 parameters, the first parameter is called the non-existent method procedure, when the __call () method is called automatically, the method name of the non-existent method is passed to the first parameter, The second parameter is to pass multiple arguments of this method in the form of an array. .

This is a test class with no properties or methods.
Class Test
{
Methods that are called automatically when an existing method is called, the first parameter is the method name, the second argument is the array parameter
function __call ($function _name, $args) {
Print "The function you call: $function _name (parameter:";
Print_r ($args);
echo ") does not exist!

";
}
}
Produces an object of the test class
$test =new test ();
Methods that do not exist in the calling object
$test->demo ("One", "one", "one", "three");
The program will not exit can be executed here
echo "This is a test
";
?>

The above example outputs the result:

The function You call: Demo (parameter: Array ([0] = + one [1] = [2] = three)) does not exist!
This is a test

the above content is quoted from " Fried peanuts " eldest brother, thank you for sharing.

The above describes the PHP object-oriented oop-__call processing call errors, including aspects of the content, I hope that the PHP tutorial interested in a friend helpful.

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.