Reply to Re: php's preg_match_all() and css classes...

Your name:

Reply:


Posted by Sandman on 11/15/44 11:26

In article <1126557506.627491.241930@g49g2000cwa.googlegroups.com>,
"kevinC" <kcallahan@gmail.com> wrote:

> Hello,
>
> I'm trying to parse out the properties of a class definition from a css
> file and am running into issues trying to write the reg. expression:
>
> h1 {
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 16px;
> font-weight: bold;
> color: #003399;
> }
> ...
>
> I need the results in:
> array[i][0] = "h1"
> array[i][1] = "
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 16px;
> font-weight: bold;
> color: #003399;"
>
> Any idea? I tried looking online for an example and can't find anything
> that works with php's preg_match_all() function...

This is how I solved it:

<?
# read stylesheets from a file
$filen=join("", file($stylesheetfile));

# remove everything between /* and */
$filen = preg_replace("!/\*.*?\*/!ms", "", $filen);

# remove whitespaces after semicolons
$filen = preg_replace("/;\s+/m", "; ", $filen);

# remove whitespaces after {
$filen = preg_replace("/{\s+/m", "{ ", $filen);

# remove whitespace before {
$filen = preg_replace("/\s+{/m", " {", $filen);

# replace several newlines with one
$filen = preg_replace("/\n{2,}/m", "\n", $filen);

# Leading whitespace
$filen = preg_replace("/^\s*/m", "", $filen);

# Multiple whitespaces to one
$filen = preg_replace("/ +/m", " ", $filen);

# Split every row and put in array as:
# filestylearray[selector][attribute]="value";

foreach(split("\n", $filen) as $line){
preg_match("/^(.*){\s*(.*)\s*;\s*}\s*$/", $line, $m);
foreach(split(";",$m[2]) as $attribline){
$a=split(":", trim($attribline));
$stylearray[strtolower(trim($m[1]))][trim($a[0])]=trim("$a[1]");
}
}

?>

It doesn't sort it like you want it to, but it can be tweaked.

Your example would end up in:

Array
(
[h1] => Array
(
[font-family] => Verdana, Arial, Helvetica, sans-serif
[font-size] => 16px
[font-weight] => bold
[color] => #003399
)

)




--
Sandman[.net]

[Back to original message]


Удаленная работа для программистов  •  Как заработать на Google AdSense  •  England, UK  •  статьи на английском  •  PHP MySQL CMS Apache Oscommerce  •  Online Business Knowledge Base  •  DVD MP3 AVI MP4 players codecs conversion help
Home  •  Search  •  Site Map  •  Set as Homepage  •  Add to Favourites

Copyright © 2005-2006 Powered by Custom PHP Programming

Сайт изготовлен в Студии Валентина Петручека
изготовление и поддержка веб-сайтов, разработка программного обеспечения, поисковая оптимизация