Current Path : /home/ncom/public_html/wp-content/plugins/smart-slider-3/Nextend/Framework/Parser/ |
Current File : /home/ncom/public_html/wp-content/plugins/smart-slider-3/Nextend/Framework/Parser/Common.php |
<?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; } }