mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-14 22:56:19 +01:00
8d04dc7e1c
RE: Plugins Dependencies. The following micro-optimization improvements are included for finding each plugin's file relative to the plugins' directory within `wp-settings.php`: * Move `trailingslashit()` before `foreach()`. The path to the plugin directory is a constant. Invoking the `trailingslashit()` within the loop for each plugin is unnecessary and less performant. This commit moves the plugin directory logic to before the loop. The result: the logic will now run 1x instead of Px where P represents the number of active and valid plugins to be loaded. * Use `substr()` instead of `str_replace()` to extract the plugin's file relative to the plugins' directory. `substr()` is more performant than `str_replace()`. Why? Per the PHP handbook: >"This function returns a string or an array with all occurrences of search in subject replaced with the given replace value." `str_replace()` searches the entire string to find and replace each substring occurrence. whereas >"Returns the portion of string specified by the offset and length parameters." `substr()` starts at the given offset and stops at the given (or end of the) string length. In other words, `substr()` iterates over less of and only a specific portion of the given input string, whereas `str_replace()` iterates through the entire string searching for matches (plural). References: * `str_replace()` https://www.php.net/manual/en/function.str-replace.php * `substr()` https://www.php.net/manual/en/function.substr.php * `strlen()` https://www.php.net/manual/en/function.strlen.php * Show the comparison in action https://3v4l.org/TbQ9U. Follow-up to [57545], [57592]. Props hellofromTonya, costdev. Fixes #60510. Built from https://develop.svn.wordpress.org/trunk@57606 git-svn-id: http://core.svn.wordpress.org/trunk@57107 1a063a9b-81f0-0310-95a4-ce76da25c4cd
48 lines
940 B
PHP
48 lines
940 B
PHP
<?php
|
|
/**
|
|
* WordPress Version
|
|
*
|
|
* Contains version information for the current WordPress release.
|
|
*
|
|
* @package WordPress
|
|
* @since 1.2.0
|
|
*/
|
|
|
|
/**
|
|
* The WordPress version string.
|
|
*
|
|
* Holds the current version number for WordPress core. Used to bust caches
|
|
* and to enable development mode for scripts when running from the /src directory.
|
|
*
|
|
* @global string $wp_version
|
|
*/
|
|
$wp_version = '6.5-alpha-57606';
|
|
|
|
/**
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
|
*
|
|
* @global int $wp_db_version
|
|
*/
|
|
$wp_db_version = 57155;
|
|
|
|
/**
|
|
* Holds the TinyMCE version.
|
|
*
|
|
* @global string $tinymce_version
|
|
*/
|
|
$tinymce_version = '49110-20201110';
|
|
|
|
/**
|
|
* Holds the required PHP version.
|
|
*
|
|
* @global string $required_php_version
|
|
*/
|
|
$required_php_version = '7.0.0';
|
|
|
|
/**
|
|
* Holds the required MySQL version.
|
|
*
|
|
* @global string $required_mysql_version
|
|
*/
|
|
$required_mysql_version = '5.5.5';
|