PclZipUtilTranslateWinPath() WP 1.0
Function : PclZipUtilTranslateWinPath() Description : Translate windows path by replacing '\' by '/' and optionally removing drive letter. Parameters : $p_path : path to translate. $p_remove_disk_letter : true | false Return Values : The path translated.
Хуков нет.
Возвращает
Null. Ничего.
Использование
PclZipUtilTranslateWinPath( $p_path, $p_remove_disk_letter );
- $p_path (обязательный)
- -
- $p_remove_disk_letter **
- -
По умолчанию: true
Код PclZipUtilTranslateWinPath() PclZipUtilTranslateWinPath WP 5.6.2
function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter=true)
{
if (stristr(php_uname(), 'windows')) {
// ----- Look for potential disk letter
if (($p_remove_disk_letter) && (($v_position = strpos($p_path, ':')) != false)) {
$p_path = substr($p_path, $v_position+1);
}
// ----- Change potential windows directory separator
if ((strpos($p_path, '\\') > 0) || (substr($p_path, 0,1) == '\\')) {
$p_path = strtr($p_path, '\\', '/');
}
}
return $p_path;
}