Filesystem: Allow `wp_normalise_path()` to handle PHP stream wrappers such as `php://` correctly.
Props calin, dd32. Fixes #42837. Built from https://develop.svn.wordpress.org/trunk@42387 git-svn-id: http://core.svn.wordpress.org/trunk@42216 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d6ffe16606
commit
6322887487
|
@ -1764,17 +1764,30 @@ function path_join( $base, $path ) {
|
||||||
* @since 3.9.0
|
* @since 3.9.0
|
||||||
* @since 4.4.0 Ensures upper-case drive letters on Windows systems.
|
* @since 4.4.0 Ensures upper-case drive letters on Windows systems.
|
||||||
* @since 4.5.0 Allows for Windows network shares.
|
* @since 4.5.0 Allows for Windows network shares.
|
||||||
|
* @since 5.0.0 Allows for PHP file wrappers.
|
||||||
*
|
*
|
||||||
* @param string $path Path to normalize.
|
* @param string $path Path to normalize.
|
||||||
* @return string Normalized path.
|
* @return string Normalized path.
|
||||||
*/
|
*/
|
||||||
function wp_normalize_path( $path ) {
|
function wp_normalize_path( $path ) {
|
||||||
|
$wrapper = '';
|
||||||
|
if ( wp_is_stream( $path ) ) {
|
||||||
|
list( $wrapper, $path ) = explode( '://', $path, 2 );
|
||||||
|
$wrapper .= '://';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Standardise all paths to use /
|
||||||
$path = str_replace( '\\', '/', $path );
|
$path = str_replace( '\\', '/', $path );
|
||||||
|
|
||||||
|
// Replace multiple slashes down to a singular, allowing for network shares having two slashes.
|
||||||
$path = preg_replace( '|(?<=.)/+|', '/', $path );
|
$path = preg_replace( '|(?<=.)/+|', '/', $path );
|
||||||
|
|
||||||
|
// Windows paths should uppercase the drive letter
|
||||||
if ( ':' === substr( $path, 1, 1 ) ) {
|
if ( ':' === substr( $path, 1, 1 ) ) {
|
||||||
$path = ucfirst( $path );
|
$path = ucfirst( $path );
|
||||||
}
|
}
|
||||||
return $path;
|
|
||||||
|
return $wrapper . $path;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.0-alpha-42386';
|
$wp_version = '5.0-alpha-42387';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue