Source Code : Consider the following block of code

PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://php.net/. Click Here or search from google with Libraries Name you get jar file related it and also http://php.net/ is a official site

Consider the following block of code

 
string implode ( string glue, array pieces ) 
array explode ( string separator, string string [, int limit] ) 


<?php 
//Break the string into an array. 
$expdate = explode ("-","1979-06-23"); 
echo $expdate[0] . ",";

//Then pull it back together into a string. 
$fulldate = implode ("-", $expdate); 
echo $fulldate;  

?>
  
  

Thank with us