MakeItSimple
Toggle
Home
C language
FAQs
Programs
Python
FAQs
Programs
HTML
Programs
FAQs
CSS
Javascript
FAQs
Programs
PHP
FAQs
Programs
JQuery
FAQs
Programs
AJAX
Bootstrap 3
Website
Programs in PHP
10. Program to combine the array elements into a string with given delimiter.
<?php $arr = array(9,1,2013); $str = implode('/',$arr); echo $str; ?>
Output :
9/1/2013