first
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace Nextend\Framework\Parser;
|
||||
|
||||
class Common {
|
||||
|
||||
/**
|
||||
* @param $str
|
||||
* @param bool $concat
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function parse($str, $concat = false) {
|
||||
|
||||
$v = explode("|*|", $str);
|
||||
for ($i = 0; $i < count($v); $i++) {
|
||||
if (strpos($v[$i], "||") !== false) {
|
||||
if ($concat === false) $v[$i] = explode("||", $v[$i]); else $v[$i] = str_replace("||", $concat, $v[$i]);
|
||||
}
|
||||
}
|
||||
|
||||
return count($v) == 1 ? $v[0] : $v;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user