本文整理汇总了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));
}
示例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));
}
示例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);
}
}
示例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;
}