2010-moteur-site-simple/__cms__/code/cms/util.php
2010-08-04 09:29:56 +02:00

12 lines
189 B
PHP

<?php
function qw($arg, $sep = " ") {
if (is_array($arg)) return $arg;
$ret = array();
foreach(explode($sep, $arg) as $v) {
if ($v !== "") array_push($ret, $v);
}
return $ret;
}
?>