当前位置: 首页>>代码示例>>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;未经允许,请勿转载。