mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
9 lines
189 B
PHP
Executable File
9 lines
189 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);
|
|
}
|
|
?>
|