Sets the approximate number of characters to use when splitting a string in chunks.

Paramètres

int $length:

Fichier

advagg_css_compress/yui/CSSMin.inc, line 167

Classe

CSSmin

Code

public function set_chunk_length($length) {
    $length = (int) $length;
    $this->chunkLength = $length < $this->minChunkLength ? $this->minChunkLength : $length;
}