Files
luos/thirdparty/html2ps_pdf/utils_text.php

8 lines
182 B
PHP
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?php
// $Header: /cvsroot/html2ps/utils_text.php,v 1.2 2005/07/01 18:01:58 Konstantin Exp $
function squeeze($string) {
return preg_replace("![ \n\t]+!"," ",trim($string));
}
?>