Why Can\'t Attribute Defaults Function Calls in PHP?

Susan Sarandon
Release: 2024-10-17 20:34:02
Original
294 people have browsed it

Why Can't Attribute Defaults Function Calls in PHP?

Can't Call Functions in PHP Attribute Defaults

[Problem]

Despite having previous programming experience, a novice in PHP is perplexed by an attribute default error. The code:

<code class="php">class Foo {
    public $path = array(
        realpath(".")
    );
}</code>
Copy after login

yields a syntax error. However, the following works seamlessly:

<code class="php">$path = array(
    realpath(".")
);</code>
Copy after login

The question arises: why can't functions be invoked in attribute defaults? Is this intentional or a flaw in implementation?

[Answer]

The PHP compiler code indicates this restriction is intentional, although no official rationale is available. Implementing this functionality reliably poses certain challenges, as evidenced by limitations in PHP's current implementation.

The compiler's grammar defines a class variable declaration as:

class_variable_declaration:
      //...
      | T_VARIABLE '=' static_scalar //...
;
Copy after login

Therefore, to assign variable values like $path, the expected value must align with a static scalar. This encompasses arrays with values that are also static scalars:

static_scalar: /* compile-time evaluated scalars */
      //...
      | T_ARRAY '(' static_array_pair_list ')' // ...
      //...
;
Copy after login

If the grammar allowed the following syntax, which aligns with the code sample, the script would encounter a "Invalid binding type" error:

class_variable_declaration:
      //...
      | T_VARIABLE '=' T_ARRAY '(' array_pair_list ')' // ...
;
Copy after login

Parsing the given code sample reveals the following steps:

zend_do_begin_class_declaration() // Adds an opcode
array_init(), zend_do_add_static_array_element() // Do not create new opcodes, add array to class properties
zend_do_declare_property() // Declares the property
zend_do_early_binding() // Consumes the last opcode and evaluates it
Copy after login

If the opcode is not expected (e.g., related to functions or methods), an error is thrown.

Allowing non-static arrays generates an INIT_ARRAY opcode, which disrupts zend_do_early_binding():

DECLARE_CLASS   'Foo'
SEND_VAL        '.'
DO_FCALL        'realpath'
INIT_ARRAY
Copy after login

To accommodate function calls in attribute defaults, a new opcode array scoped to the class variable declaration would be needed, similar to method definitions. However, determining the timing of such evaluation presents additional challenges.

Other dynamic languages have managed to resolve this, but it remains a feature absent in PHP, potentially due to its complexity and perceived low priority.

The above is the detailed content of Why Can\'t Attribute Defaults Function Calls in PHP?. For more information, please follow other related articles on the PHP Chinese website!

source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!