Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what are Implode and Explode functions?

Answer Posted / kalaimani.k mca (gurunanak col

Example . explode()

<?php
$history= "php4 php5 php6";
$pieces = explode(" ", $history);

//separated the arrays

echo $history[0]; // php3
echo $history[1]; // php4
echo $history[1]; // php5
?>

//implode Join array elements with a string

implode() example
<?php
$array = array('lastname', 'email', 'phone');
$comma_separated = implode(",", $array);
echo $comma_separated;

//lastname,email,phone

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to include variables in double-quoted strings?

932


What is list function with their uses.

931


How do I use isdigit function?

1003


why did u want to leave your past organisation?

2013


Tell me what kind of things have you done on the social side?

925


What is the difference between indexed and associative array?

973


Tell me how a constant is defined in a php script?

889


Tell me how can we determine whether a php variable is an instantiated object of a certain class?

964


Is php easy language to learn?

1017


Tell me is it possible to submit a form with a dedicated button?

909


What do you mean by having php as whitespace insensitive?

940


What was the old name of php?

1368


Explain which cryptographic extension provide generation and verification of digital signatures?

954


which will print out the php call stack?

929


How can I display text with a php script?

962