Files
luos/thirdparty/html2ps_pdf/utils_text.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

8 lines
182 B
PHP

<?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));
}
?>