rfc:static_constructor

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
rfc:static_constructor [2024/06/19 11:15] – Changing implementation link erickcomprfc:static_constructor [2025/04/03 13:08] (current) – external edit 127.0.0.1
Line 4: Line 4:
   * Date: 2024-06-08   * Date: 2024-06-08
   * Author: Erick de Azevedo Lima <ericklima.comp@gmail.com>   * Author: Erick de Azevedo Lima <ericklima.comp@gmail.com>
-  * Status: Draft+  * Status: Under Discussion 
   * Target Version: PHP 8.4   * Target Version: PHP 8.4
   * Implementation: https://github.com/php/php-src/compare/master...erickcomp:php-src_static-constructor:master   * Implementation: https://github.com/php/php-src/compare/master...erickcomp:php-src_static-constructor:master
Line 38: Line 38:
         // could get it from config, database or whatever          // could get it from config, database or whatever 
         self::$minDate = new \DatetimeImmutable('2024-01-01 00:00:00');         self::$minDate = new \DatetimeImmutable('2024-01-01 00:00:00');
-         
     }     }
          
Line 79: Line 78:
         // could get it from config, database or whatever          // could get it from config, database or whatever 
         self::$minDate = new \DatetimeImmutable('2024-01-01 00:00:00');         self::$minDate = new \DatetimeImmutable('2024-01-01 00:00:00');
-         
     }     }
          
Line 382: Line 380:
  
 Similar to the C# implementation, the static constructor can take no arguments. Similar to the C# implementation, the static constructor can take no arguments.
 +
 +===== Exception handling =====
 +The current behavior allows exceptions to be thrown from within the static constructor, and the program can recover from them. It's up to the programmer to decide how to handle this. This behavior is possible because the static constructor is called upon the usage of static properties, not when the class is loaded or linked. It's similar to throwing an exception from an existing "init" method, but **the static constructor won't be called by the engine a second time**. Just like an instance constructor can throw an exception, and if you decide to recover from it, you won't have an instance of that class.
  
 ===== Implementation notes ===== ===== Implementation notes =====
Line 494: Line 495:
 As per the voting RFC a yes/no vote with a 2/3 majority is needed for this proposal to be accepted. As per the voting RFC a yes/no vote with a 2/3 majority is needed for this proposal to be accepted.
  
 +===== Implementation =====
 +
 +https://github.com/php/php-src/compare/master...erickcomp:php-src_static-constructor:master
 +
 +Note: This implementation still needs tests
  
 ===== Future scope ===== ===== Future scope =====
rfc/static_constructor.1718795714.txt.gz · Last modified: 2025/04/03 13:08 (external edit)