本文整理汇总了PHP中Property::createFromString方法的典型用法代码示例。如果您正苦于以下问题:PHP Property::createFromString方法的具体用法?PHP Property::createFromString怎么用?PHP Property::createFromString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Property
的用法示例。
在下文中一共展示了Property::createFromString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: parse
/**
* Parses the css code converting to a Css object with all selectors, properties and values.
*
* @param string $string_code The css code to parse
*
* @return Stylecow\Css The parsed css code
*/
private static function parse($string_code)
{
$Css = new Css();
while ($string_code) {
$pos = strpos($string_code, '{');
$pos2 = strpos($string_code, ';');
if ($pos2 !== false && $pos2 < $pos) {
$Css->addChild(new Css(Selector::createFromString(substr($string_code, 0, $pos2))));
$string_code = trim(substr($string_code, $pos2 + 1));
continue;
}
if ($pos === false) {
break;
}
$selector = substr($string_code, 0, $pos);
$string_code = trim(substr($string_code, $pos + 1));
$length = strlen($string_code);
$in = 1;
for ($n = 0; $n <= $length; $n++) {
$letter = $string_code[$n];
if ($letter === '{') {
$in++;
continue;
}
if ($letter !== '}' || --$in) {
continue;
}
$Child = $Css->addChild(new Css(Selector::createFromString($selector)));
$string_piece = $n === 0 ? '' : trim(substr($string_code, 0, $n - 1));
$string_code = trim(substr($string_code, $n + 1));
$pos = strpos($string_piece, '{');
if ($pos === false) {
$properties_string = $string_piece;
$content_string = '';
} else {
$pos = strrpos(substr($string_piece, 0, $pos), ';');
if ($pos !== false) {
$properties_string = trim(substr($string_piece, 0, $pos + 1));
$content_string = trim(substr($string_piece, $pos + 1));
} else {
$properties_string = '';
$content_string = $string_piece;
}
}
if ($properties_string) {
foreach (self::explodeTrim(';', $properties_string) as $property) {
$Child->addProperty(Property::createFromString($property));
}
}
if ($content_string) {
foreach (self::parse($content_string) as $child) {
$Child->addChild($child);
}
}
break;
}
}
return $Css;
}
示例2: parse
/**
* Parses the css code converting to a Css object with all selectors, properties and values.
*
* @param string $string_code The css code to parse
* @param string $filename The original filename (used to import relative files)
*
* @return Stylecow\Css The parsed css code
*/
private static function parse($string_code, $filename = null, $contextFile = null)
{
if ($filename) {
$relativePath = $contextFile ? substr($filename, strlen($contextFile)) : pathinfo($filename, PATHINFO_BASENAME);
} else {
$relativePath = '';
}
$Css = $Child = new Css();
$status = array('selector');
$buffer = '';
$code = explode("\n", str_replace("\n\r", "\n", $string_code));
array_unshift($code, '');
foreach ($code as $line => $string_line) {
if (empty($string_line)) {
continue;
}
$col = 0;
$length = strlen($string_line);
$char = $previousChar = null;
$nextChar = $string_line[$col];
while ($col < $length) {
$previousChar = $char;
$char = $nextChar;
$col++;
$nextChar = $col === $length ? null : $string_line[$col];
switch ($char) {
case '"':
switch ($status[0]) {
case 'doubleQuote':
$buffer .= $char;
if ($previousChar !== '\\') {
array_shift($status);
}
break;
case 'simpleQuote':
$buffer .= $char;
break;
case 'selector':
case 'properties':
$buffer .= $char;
array_unshift($status, 'doubleQuote');
}
break;
case "'":
switch ($status[0]) {
case 'simpleQuote':
$buffer .= $char;
if ($previousChar !== '\\') {
array_shift($status);
}
break;
case 'doubleQuote':
$buffer .= $char;
break;
case 'selector':
case 'properties':
$buffer .= $char;
array_unshift($status, 'simpleQuote');
}
break;
case '{':
switch ($status[0]) {
case 'selector':
case 'properties':
$Child = $Child->addChild(new Css(Selector::createFromString($buffer)))->setSourceMap($line, $col, $relativePath);
array_unshift($status, 'properties');
$buffer = '';
break;
}
break;
case '}':
switch ($status[0]) {
case 'properties':
if (trim($buffer)) {
$Child->addProperty(Property::createFromString($buffer))->setSourceMap($line, $col, $relativePath);
}
$buffer = '';
array_shift($status);
$Child = $Child->parent;
break;
}
break;
case ';':
switch ($status[0]) {
case 'selector':
if (strpos($buffer, '@import') === false || !is_object($Children = self::parseImport($buffer, $filename, $contextFile))) {
$Child->addChild(new Css(Selector::createFromString($buffer)))->setSourceMap($line, $col, $relativePath);
} else {
foreach ($Children->getChildren() as $Each) {
$Child->addChild($Each);
}
}
//.........这里部分代码省略.........