Runs all numeric operations

Paramètres

(string) str: Unit string:

Fichier

advagg_css_compress/css-compressor-3.x/src/lib/Numeric.inc, line 39

Classe

CSSCompression_Numeric
CSS Compressor [VERSION] [DATE] Corey Hart @ <a href="http://www.codenothing.com">http://www.codenothing.com</a>

Code

public function numeric($str) {
    $str = $this->decimal($str);
    $str = $this->zeroes($str);
    $str = $this->units($str);
    return $str;
}