public static concat ()
Concatenates strings using the separator only once without duplication in places concatenation
$str = Phalcon\Text::concat("/", "/tmp/", "/folder_1/", "/folder_2", "folder_3/"); echo $str; // /tmp/folder_1/folder_2/folder_3/
Please login to continue.