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


PHP csstidy::escaped方法代碼示例

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


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

示例1: escaped

 /**
  * Checks if a character is escaped (and returns true if it is)
  * @param string $string
  * @param integer $pos
  * @access public
  * @return bool
  * @version 1.02
  */
 function escaped(&$string, $pos)
 {
     return !(@($string[$pos - 1] != '\\') || csstidy::escaped($string, $pos - 1));
 }
開發者ID:robertsonmello,項目名稱:projetos,代碼行數:12,代碼來源:class.csstidy.php

示例2: escaped

 /**
  * Checks if a character is escaped (and returns true if it is)
  * @param string $string
  * @param integer $pos
  * @access public
  * @return bool
  * @version 1.02
  */
 static function escaped(&$string, $pos)
 {
     $pos = $pos - 1;
     return !(@($string[$pos] !== '\\') || csstidy::escaped($string, $pos));
 }
開發者ID:atifzaidi,項目名稱:shwups-cms,代碼行數:13,代碼來源:class.csstidy.php

示例3: explode_ws

 /**
  * Explodes a string as explode() does, however, not if $sep is escaped or within a string.
  * @param string $sep seperator
  * @param string $string
  * @return array
  * @version 1.0
  */
 function explode_ws($sep, $string)
 {
     $status = 'st';
     $to = '';
     $output = array();
     $num = 0;
     for ($i = 0, $len = strlen($string); $i < $len; $i++) {
         switch ($status) {
             case 'st':
                 if ($string[$i] == $sep && !csstidy::escaped($string, $i)) {
                     ++$num;
                 } elseif ($string[$i] === '"' || $string[$i] === '\'' || $string[$i] === '(' && !csstidy::escaped($string, $i)) {
                     $status = 'str';
                     $to = $string[$i] === '(' ? ')' : $string[$i];
                     isset($output[$num]) ? $output[$num] .= $string[$i] : ($output[$num] = $string[$i]);
                 } else {
                     isset($output[$num]) ? $output[$num] .= $string[$i] : ($output[$num] = $string[$i]);
                 }
                 break;
             case 'str':
                 if ($string[$i] == $to && !csstidy::escaped($string, $i)) {
                     $status = 'st';
                 }
                 isset($output[$num]) ? $output[$num] .= $string[$i] : ($output[$num] = $string[$i]);
                 break;
         }
     }
     if (isset($output[0])) {
         return $output;
     } else {
         return array($output);
     }
 }
開發者ID:Nancers,項目名稱:Snancy-Website-Files,代碼行數:40,代碼來源:class.csstidy_optimise.php

示例4: escaped

 /**
  * Checks if a character is escaped (and returns true if it is)
  * @param string $string
  * @param integer $pos
  * @access public
  * @return bool
  * @version 1.02
  */
 public function escaped(&$string, $pos)
 {
     return $pos ? !(@($string[$pos - 1] !== '\\') || csstidy::escaped($string, $pos - 1)) : false;
 }
開發者ID:heyjones,項目名稱:crossfitpurpose,代碼行數:12,代碼來源:class.csstidy.php


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