rfc:function_autoloading4

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:function_autoloading4 [2024/08/15 15:10] withinboredomrfc:function_autoloading4 [2024/09/04 19:07] (current) – fix example withinboredom
Line 3: Line 3:
   * Version: 1.0   * Version: 1.0
   * Date: 2024-08-15   * Date: 2024-08-15
-  * Author: Robert Landers, <landers.robert@gmail.com>/<rob@bottled.codes>+  * Author: Robert Landers, <landers.robert@gmail.com>
   * Status: Under Discussion (or Accepted or Declined)   * Status: Under Discussion (or Accepted or Declined)
   * First Published at: http://wiki.php.net/rfc/function_autoloading4   * First Published at: http://wiki.php.net/rfc/function_autoloading4
Line 10: Line 10:
  
 The topic of supporting function autoloading was brought up many times in the past, this RFC introduces a potential implementation which would be consistent with what we have for autoloading classes. The topic of supporting function autoloading was brought up many times in the past, this RFC introduces a potential implementation which would be consistent with what we have for autoloading classes.
 +
 +By using autoloaders, programmers can already get quickly up to speed when it comes to classes, but the language currently lacks a way to do the same for functions. This requires programmers to manually (and carefully) include files that must be included on every request. For 'functional' codebases, they lose the ability to use autoloaders, or they must write their functions as static methods on classes. This isn’t ideal, and this RFC seeks to close the gap between functions and classes.
  
 ===== Proposal ===== ===== Proposal =====
  
-The suggested change would be pretty straightforward and backwards-compatible: +This RFC proposes to add two new constants to the SPL extension''%%SPL_AUTOLOAD_CLASS%%''''%%SPL_AUTOLOAD_FUNCTION%%''These constants may be passed to ''%%spl_autoload_register%%'' as the fourth parameter to register an autoloader for classes or functions, respectively. If not specified, the default value ''%%SPL_AUTOLOAD_CLASS%%'' will be used to retain backward compatibility.
- +
-  - Add two new constants to spl: SPL_AUTOLOAD_CLASS, SPL_AUTOLOAD_FUNCTION. +
-  - Add a fourth optional parameter for spl_autoload_register, with a default value of SPL_AUTOLOAD_CLASS. +
-  - The type for the missing token should also be passed to the $autoload_function callback as a second param. (e.g., SPL_AUTOLOAD_CLASS for classes, SPL_AUTOLOAD_FUNCTION for functions) +
-  - Change the current class autoloading to only call the autoloaders which match with the SPL_AUTOLOAD_CLASS types. +
-  - Add the function autoloading to only call the autoloaders which match with the SPL_AUTOLOAD_FUNCTION types. +
- +
-There won’t be any changes to the current autoloading mechanism when it comes to classesHowever, if a function+
  
-  - is called in a fully qualified form (e.g., a ''%%use%%'' statement or ''%%\%%'' prefix is used) +There won’t be any changes to the current autoloading mechanism when it comes to classes.
-  - is not defined +
-  - and an autoloader is registered with the SPL_AUTOLOAD_FUNCTION type+
  
-then the autoloader will be called with the function name as the first parameter (with the initial slash removed) and SPL_AUTOLOAD_FUNCTION as the second parameter.+==== Function Autoloading ====
  
-However, if a function+The function autoloader will be called with the fully qualified undefined function name. This will allow the function autoloader to determine how to load or generate the function.
  
-  - is called in an unqualified form (e.g., ''%%strlen()%%''+PHP allows programmers to call an unqualified function nameTraditionallythis means that PHP would first search in the current namespace for the function and then fall back to the global namespace if the function is not found. This behavior will be preserved. However, the function autoloader will be called **only once** for the current namespace; thus, the function autoloader will not be called again if the function is found in the global namespace.
-  - is not defined locally or globally +
-  - and an autoloader is registered with the SPL_AUTOLOAD_FUNCTION type +
- +
-then the autoloader will be called with the current namespace prepended to the function name. If the autoloader chooses to look up the "basename" of the function, it may do so.+
  
 Example "''%%PSR-4-style%%''" (except the last part of the namespace is the file it is in) function autoloader: Example "''%%PSR-4-style%%''" (except the last part of the namespace is the file it is in) function autoloader:
Line 42: Line 30:
 <?php <?php
  
-spl_autoload_register(function ($function, $type) { +spl_autoload_register(function ($function) { 
-    if ($type === SPL_AUTOLOAD_FUNCTION) { +    $function_path = dirname(str_replace('\\', DIRECTORY_SEPARATOR, $function)); 
-        $function_path = dirname(str_replace('\\', DIRECTORY_SEPARATOR, $function)); +    $file = __DIR__ . '/functions/' . $function_path . '.php';
-        $file = __DIR__ . '/functions/' . $function_path . '.php';+
  
-        if (file_exists($file)) { +    if (file_exists($file)) { 
-            require_once $file; +        require_once $file;
-        }+
     }     }
 }, false, false, SPL_AUTOLOAD_FUNCTION); }, false, false, SPL_AUTOLOAD_FUNCTION);
 </code> </code>
 +
 +==== Performance Impact ====
 +
 +Function autoloading doesn’t appear to have a significant impact on performance; however, the function autoloader itself (depending upon its implementation) may have a performance impact.
 +
 +To help mitigate any potential performance impact of function autoloading many unqualified functions, a function will only be searched for once per namespace.
 +
 +==== spl_autoload ====
 +
 +The ''%%spl_autoload%%'' function will not be modified. It may be used as a function autoloader if the programmer desires, though it will limit the programmer to a single function per file.
 +
 +==== spl_autoload_unregister ====
 +
 +''%%spl_autoload_unregister%%'' will be updated to accept the new constants as the second parameter to unregister an autoloader from either mode.
 +
 +==== spl_autoload_functions ====
 +
 +''%%spl_autoload_functions%%'' will be updated to accept one of the new constants as the first parameter. Passing both (i.e., ''%%SPL_AUTOLOAD_CLASS | SPL_AUTOLOAD_FUNCTION%%'') will result in all registered functions.
 +
 +==== spl_autoload_call ====
 +
 +The ''%%spl_autoload_call%%'' function will be modified to accept a second parameter of one or both of the constants, with the default value set to ''%%SPL_AUTOLOAD_CLASS%%''. The name of the first parameter will be changed to ''%%$name%%'' to reflect that it can be a class or function name.
 +
 +In the event that both constants are passed, it will attempt to autoload both types.
 +
 +<code php>
 +spl_autoload_call('Some\func', SPL_AUTOLOAD_FUNCTION); // Calls the function autoloader
 +spl_autoload_call('Some\func'); // Calls the class autoloader
 +spl_autoload_call('Some\func', SPL_AUTOLOAD_CLASS); // Calls the class autoloader
 +spl_autoload_call('func', SPL_AUTOLOAD_FUNCTION | SPL_AUTOLOAD_CLASS); // Calls both autoloaders with the name 'func'
 +</code>
 +
 +==== function_exists ====
 +
 +The ''%%function_exists%%'' function will be updated to include a boolean option (''%%$autoload%%'') as the second parameter, which will default to ''%%true%%''. If set to ''%%true%%'', the function autoloader will be called if the function is not defined, otherwise, it will not be called.
  
 ===== Backward Incompatible Changes ===== ===== Backward Incompatible Changes =====
  
-There are no backward incompatible changes.+There shouldn’t be any backward incompatible changes.
  
 ===== Proposed PHP Version(s) ===== ===== Proposed PHP Version(s) =====
Line 66: Line 87:
 ==== To Opcache ==== ==== To Opcache ====
  
-To be determined.+  * Potential changes to JIT helpers to call the autoloader instead of reading from the function table directly.
  
 ==== New Constants ==== ==== New Constants ====
Line 74: Line 95:
 ===== Open Issues ===== ===== Open Issues =====
  
-To be determined.+None.
  
 ===== Future Scope ===== ===== Future Scope =====
Line 81: Line 102:
  
 ===== Proposed Voting Choices ===== ===== Proposed Voting Choices =====
 +
 +As per the voting RFC a yes/no vote with a 2/3 majority is needed for this proposal to be accepted.
 +
 +Voting started on 2023-XX-XX and will end on 2023-XX-XX.
 +
 +
 +
  
 <doodle title="Implement Function Autoloading v4, as described" auth="withinboredom" voteType="single" closed="true" closeon="2022-01-01T00:00:00Z"> <doodle title="Implement Function Autoloading v4, as described" auth="withinboredom" voteType="single" closed="true" closeon="2022-01-01T00:00:00Z">
Line 86: Line 114:
    * No    * No
 </doodle> </doodle>
 +
 +
  
 ===== Patches and Tests ===== ===== Patches and Tests =====
  
-Not yet.+Review the implementation [[https://github.com/php/php-src/pull/15471|on GitHub #15471]]
  
 ===== Implementation ===== ===== Implementation =====
  
-After the project is implemented, this section should contain the version(s) it was merged into - a link to the git commit(s) - a link to the PHP manual entry for the feature - a link to the language specification section (if any)+  * Implentation: [[https://github.com/php/php-src/pull/15471|PR #15471]] 
 +  * Version: TBD 
 +  * PHP Manual Entry: TODO
  
 ===== References ===== ===== References =====
Line 105: Line 137:
 ===== Rejected Features ===== ===== Rejected Features =====
  
-Keep this updated with features that were discussed on the mail lists.+==== Autoloading constants ==== 
 + 
 +Autoloading of other types such as constants and stream wrappers will come in a later RFC.
  
rfc/function_autoloading4.1723734658.txt.gz · Last modified: 2024/08/15 15:10 by withinboredom