programming-examples/php/_Basics/Program to combine the array elements into a string with given delimiter..php
2019-11-15 12:59:38 +01:00

7 lines
81 B
PHP

<?php
$arr = array(9,1,2013);
$str = implode('/',$arr);
echo $str;
?>