Warum können Standard-Funktionsaufrufe in PHP nicht mit Attributen versehen werden?

Susan Sarandon
Freigeben: 2024-10-17 20:34:02
Original
294 Leute haben es durchsucht

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>
Nach dem Login kopieren

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

<code class="php">$path = array(
    realpath(".")
);</code>
Nach dem Login kopieren

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 //...
;
Nach dem Login kopieren

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 ')' // ...
      //...
;
Nach dem Login kopieren

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 ')' // ...
;
Nach dem Login kopieren

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
Nach dem Login kopieren

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
Nach dem Login kopieren

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.

Das obige ist der detaillierte Inhalt vonWarum können Standard-Funktionsaufrufe in PHP nicht mit Attributen versehen werden?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:php
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!