Changeset 38121 for trunk/src/wp-includes/compat.php
- Timestamp:
- 07/20/2016 04:56:21 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/compat.php
r37750 r38121 518 518 519 519 /** 520 * Register a function to be autoloaded.520 * Registers a function to be autoloaded. 521 521 * 522 522 * @since 4.6.0 523 523 * 524 524 * @param callable $autoload_function The function to register. 525 * @param boolean $throw Should the function throw an exception if the function isn't callable? 526 * @param boolean $prepend Should we prepend the function to the stack? 525 * @param bool $throw Optional. Whether the function should throw an exception 526 * if the function isn't callable. Default true. 527 * @param bool $prepend Whether the function should be prepended to the stack. 528 * Default false. 527 529 */ 528 530 function spl_autoload_register( $autoload_function, $throw = true, $prepend = false ) { … … 547 549 548 550 /** 549 * Unregister an autoloader function.551 * Unregisters an autoloader function. 550 552 * 551 553 * @since 4.6.0 552 554 * 553 555 * @param callable $function The function to unregister. 554 * @return bool eanTrue if the function was unregistered, false if it could not be.556 * @return bool True if the function was unregistered, false if it could not be. 555 557 */ 556 558 function spl_autoload_unregister( $function ) { … … 567 569 568 570 /** 569 * Getthe registered autoloader functions.571 * Retrieves the registered autoloader functions. 570 572 * 571 573 * @since 4.6.0
Note: See TracChangeset
for help on using the changeset viewer.