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