DokuWiki

It's better when it's simple

使用者工具

網站工具


zh-tw:installer

function utf8_encodeFN($file,$safe=true){

  global $conf;
  if($conf['fnencode'] == 'utf-8') {
   	$file=mb_convert_encoding($file,"CP936","UTF-8");
return $file;}
  if($safe && preg_match('#^[a-zA-Z0-9/_\-\.%]+$#',$file)){
      return $file;
  }
  if($conf['fnencode'] == 'safe'){
      return SafeFN::encode($file);
  }
  $file = urlencode($file);
  $file = str_replace('%2F','/',$file);
  return $file;

}

function utf8_decodeFN($file){

  global $conf;
  if($conf['fnencode'] == 'utf-8') {
   	$file=mb_convert_encoding($file,"UTF-8","CP936");
return $file;}
  if($conf['fnencode'] == 'safe'){
      return SafeFN::decode($file);
  }
  return urldecode($file);

}

zh-tw/installer.txt · 上一次變更: 2014-06-07 18:14 由 2001:4dd0:ff00:8eb9:3434:df96:4755:6fcb

若無特別註明,本 wiki 上的內容都是採用以下授權方式: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki