PHP defines the array constant (array constant) method, array constant _ PHP Tutorial

Source: Internet
Author: User
PHP defines the array constant (array constant) method, array constant. PHP defines the array constant (array constant) method. in PHP, we cannot use const to directly define the array constant, but const can define the string constant, combined with eval () function PHP defines the array constant (array constant) method, array constant

In PHP, we cannot use const to directly define array constants, but const can define string constants and use the eval () function to execute string constants. Therefore, we can return an array constant by defining a string constant. Here is the time to witness the miracle!

The code is as follows:


<? Php
Class Test
{
Const MY_ARR = "return array (\" a \ ", \" B \ ", \" c \ ", \" d \");";
Public function getConstArray ()
{
Return eval (Test: MY_ARR); // The eval () function executes the string as the PHP code.
}
}
$ T = new Test ();
Print_r ($ t-> getConstArray ());
?>

In the above code, the getConstArray () function is equivalent to an array constant.

In PHP, we cannot use const to directly define an array constant, but const can define a string constant, combined with the eval () function...

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.