Php prompts Redefining already defined constructor for class error

Source: Internet
Author: User
Tags constructor

The following error is reported in many places after ecshop2.7.3 is installed in the local PHP environment PHP5.4.

Redefining already defined constructor for class XXX

Check the code and find that the corresponding position is the constructor of a class. The specific statement is as follows:


/**
* Constructor
     *
* @ Access public
* @ Param
     *
* @ Return void
*/
Function alipay ()
    {
    }

Function _ construct ()
    {
$ This-> alipay ();
    }

Using the same point function name as the class name as the constructor is written in the php4 era, while the constructor in the php5 era is _ construct (). ecshop is compatible with older php versions, therefore, the above method is used.

However, starting from php5.4, for the simultaneous use of these two methods, it is required that the _ construct () is in front of the function with the same name, so you only need to call the positions of the two functions.

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.