First post: How to write the optional parameters in PHP function prototypes

Source: Internet
Author: User
First post: Optional parameters in PHP function prototypes Why do you write this?

First, let's start. Write something simple.

Just started to learn PHP, when looking at PHP manual encountered a problem: in the function prototype with optional parameters, the optional parameters of the wording can not understand.

such as the Explode function

Array explode (string $delimiter, string $string [, int $limit])

Optional parameters are enclosed in "[square brackets]", then the third parameter is $limit optional.

But why not write it like this:

Array explode (string $delimiter, string $string, [int $limit])

It is impossible to understand the position of this comma.

1/ F deanchopper
Optional refers to something inside [] that is optional instead of a parameter, so press your way regardless of whether there is a final parameter after the second argument there is one, obviously this is not possible
Re: yangtoude
@DeanChopper, understand, thank you!
  • 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.