pclziputiltranslatewinpath

函数
pclziputiltranslatewinpath ( $p_path, $p_remove_disk_letter = true )

pclziputiltranslatewinpath: 这是WordPress中的一个函数,是PclZip库的一部分。它用来把Windows路径翻译成Unix路径,用正斜线替换反斜线: 当在使用基于Unix操作系统的服务器上处理文件时,这很有用。

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;
  }
  // --------------------------------------------------------------------------------


?>

常见问题

FAQs
查看更多 >