Files
newznab-tmux/resources/smarty/plugins/modifier.parray.php
T
2018-03-06 14:36:00 +01:00

11 lines
216 B
PHP
Executable File

<?php
function smarty_modifier_parray($string, $explode, $limit = null)
{
if ($limit == null) {
return explode($explode, $string);
} else {
return explode($explode, $string, $limit);
}
}