Source for file strip.php
Documentation is available at strip.php
* Strips the spaces at the beginning and end of each line and also the line breaks
* * mode : sets the content being stripped, available mode are 'default' or 'js'
* for javascript, which strips the comments to prevent syntax errors
* This software is provided 'as-is', without any express or implied warranty.
* In no event will the authors be held liable for any damages arising from the use of this software.
* @author Jordi Boggiano <j.boggiano@seld.be>
* @copyright Copyright (c) 2008, Jordi Boggiano
* @license http://dwoo.org/LICENSE Modified BSD License
public function init($mode =
"default")
public static function preProcessing(Dwoo_Compiler $compiler, array $params, $prepend, $append, $type)
public static function postProcessing(Dwoo_Compiler $compiler, array $params, $prepend, $append, $content)
$params =
$compiler->getCompiledParams($params);
$mode =
trim($params['mode'], '"\'');
$content =
preg_replace('#(?<!:)//\s[^\r\n]*|/\*.*?\*/#s','', $content);
$content =
preg_replace(array("/\n/","/\r/",'/(<\?(?:php)?|<%)\s*/'), array('','','$1 '), preg_replace('#^\s*(.+?)\s*$#m', '$1', $content));
Documentation generated on Sat, 18 Jul 2009 21:05:22 +0200 by phpDocumentor 1.4.0