mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
24fa162413
[ci skip] [skip ci]
11 lines
216 B
PHP
Executable File
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);
|
|
}
|
|
}
|