Answers for "what is the use of implode iin php"

PHP
14

implode php

$array = array('banana', 'strawberry', 'apple');
comma_separated  = implode(",", $array);
echo comma_separated; // banana,strawberry,apple
Posted by: Guest on October-26-2020

Code answers related to "what is the use of implode iin php"

Browse Popular Code Answers by Language