Hackerss.com

Hackerss.com is a community of amazing hackers

Hackerss is a community for developers, data scientitst, ethical hackers, hardware enthusiasts or any person that want to learn / share their knowledge of any aspect of digital technology.

Create account Log in
hackerss
hackerss

Posted on

Php Split an array by commas


$arr = array(1,2,3,4,5,6,7,8,9,10);

$arr = implode(",", $arr);

echo $arr;

?>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)