A problem with php _ callStatic method parameters

Source: Internet
Author: User
See the following code {code ...} __callstatic implements static methods to call the instance method, but the $ arguments variable is an array. How to transmit parameters to the instance method without changing the func method (the parameters may not be fixed. see the following code.

php
class XXOO{ private static $instance; public function func($arg1, $arg2, $arg3, $arg4) { } public static function __callStatic($method, $arguments) { if (!self::$instance) { self::$instance = new self(); } return self::$instance->$method($arguments); }}XXOO::func('arg', 'arg2', array('name'), 'sf');

__callStaticCall the instance method using static methods,$argumentsVariable is an array without changingfuncHow to transmit parameters to the instance method on the premise that the method (parameters may not be fixed.

Reply content:

See the following code.

php
class XXOO{ private static $instance; public function func($arg1, $arg2, $arg3, $arg4) { } public static function __callStatic($method, $arguments) { if (!self::$instance) { self::$instance = new self(); } return self::$instance->$method($arguments); }}XXOO::func('arg', 'arg2', array('name'), 'sf');

__callStaticCall the instance method using static methods,$argumentsVariable is an array without changingfuncHow to transmit parameters to the instance method on the premise that the method (parameters may not be fixed.

call_user_func_array([self::$instance, $method], $arguments);

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.