當前位置: 首頁>>代碼示例>>PHP>>正文


PHP WindFile::getSuffix方法代碼示例

本文整理匯總了PHP中WindFile::getSuffix方法的典型用法代碼示例。如果您正苦於以下問題:PHP WindFile::getSuffix方法的具體用法?PHP WindFile::getSuffix怎麽用?PHP WindFile::getSuffix使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在WindFile的用法示例。


在下文中一共展示了WindFile::getSuffix方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: save

 /**
  * 存儲附件,如果是遠程存儲,記得刪除本地文件
  *
  * @param string $source 本地源文件地址
  * @param string $filePath 存儲相對位置
  * @return bool
  */
 public function save($source, &$filePath)
 {
     $data = WindFile::read($source);
     $stuff = WindFile::getSuffix($source);
     $result = $this->_getCdn()->write($data, $stuff);
     if ($result) {
         Pw::deleteFile($source);
         $filePath = $result;
         return true;
     } else {
         return false;
     }
 }
開發者ID:latticet,項目名稱:EduSoho_jb51,代碼行數:20,代碼來源:PwStorageCdn.php

示例2: isMyBrother

 /**
  * 判斷是否是子域名
  *
  * 此方法不夠嚴謹,如果遇到主域名正好就是域名後綴的時候,類似www.info.com,www.net.cn時有bug。
  *
  * @param string $domain1        	
  * @param string $domain2        	
  */
 public static function isMyBrother($domain1, $domain2)
 {
     if ($domain1 == $domain2) {
         return true;
     }
     if (WindFile::getSuffix($domain1) != WindFile::getSuffix($domain2)) {
         return false;
     }
     $domain1 = str_replace(array('http://'), 'https://', $domain1);
     $domain2 = str_replace(array('http://'), 'https://', $domain2);
     $suffix = array('com', 'cn', 'name', 'org', 'net', 'edu', 'gov', 'info', 'pro', 'museum', 'coop', 'aero', 'xxx', 'idv', 'hk', 'tw', 'mo', 'me', 'biz');
     $preg = implode('|', $suffix);
     $domain1 = preg_replace("/(\\.({$preg}))*\\.({$preg})\$/iU", '', $domain1);
     $domain2 = preg_replace("/(\\.({$preg}))*\\.({$preg})\$/iU", '', $domain2);
     $r = explode('.', $domain1);
     $main1 = end($r);
     $r = explode('.', $domain2);
     $main2 = end($r);
     return $main1 == $main2;
 }
開發者ID:chendong0444,項目名稱:phpwind,代碼行數:28,代碼來源:PwDomainHelper.php

示例3: _doCss

 /**
  * @param string $stylePackage
  * @param booelan $isManifestChanged
  * @return boolean
  */
 private function _doCss($stylePackage)
 {
     $file = $stylePackage . '/' . $this->manifest;
     $dir = $stylePackage . '/' . $this->cssDevDir;
     $_dir = $stylePackage . '/' . $this->cssDir;
     WindFolder::mkRecur($_dir);
     $files = WindFolder::read($dir, WindFolder::READ_FILE);
     foreach ($files as $v) {
         if (WindFile::getSuffix($v) === 'css') {
             $dev_css = $dir . '/' . $v;
             //待編譯文件
             $css = $_dir . '/' . $v;
             //編譯後文件
             $data = WindFile::read($dir . '/' . $v);
             $_data = $this->_compress($data);
             if (WindFile::write($css, $_data) === false) {
                 return new PwError('STYLE:style.css.write.fail');
             }
         }
     }
     return true;
 }
開發者ID:latticet,項目名稱:EduSoho_jb51,代碼行數:27,代碼來源:PwCssCompress.php

示例4: getMode

 /**
  * 根據文件獲得文件訪問的模式
  * 
  * @param string $filename 文件名
  * @param string $mode 模式,二進製還是ASCII上傳,I為二進製模式,A為ASCII模式,默認為A模式,如果是auto將會根據文件後綴來設置模式
  * @return string 返回模式方式FTP_ASCII或是FTP_BINARY
  */
 private function getMode($filename, $mode)
 {
     if (strcasecmp($mode, 'auto') == 0) {
         $ext = WindFile::getSuffix($filename);
         $mode = in_array(strtolower($ext), array('txt', 'text', 'php', 'phps', 'php4', 'js', 'css', 'htm', 'html', 'phtml', 'shtml', 'log', 'xml')) ? 'A' : 'I';
     }
     return $mode == 'A' ? FTP_ASCII : FTP_BINARY;
 }
開發者ID:ccq18,項目名稱:EduSoho,代碼行數:15,代碼來源:WindFtp.php


注:本文中的WindFile::getSuffix方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。