Repackage the contents of an array into a delimited string, : implode « Data Structure « PHP
- PHP
- Data Structure
- implode
Repackage the contents of an array into a delimited string,
<?php
$fulldate = implode ("-", $expdate);
echo $fulldate;
?>
Related examples in the same category