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 / jhon

Implode and Explode are function sthat are opposite in working
Explode converts a string into array where as implode
coverts an array in string
explode example

<?php
$str = "test explode in php";
print_r (explode(" ",$str));
?>
output will be:
Array
(
[0] => test
[1] => explode
[2] => in
[3] => php
)
implode example


<?php
$arr = array('hi','hello');
echo implode(" ",$arr);
?>
output will be:
hi hello

Is This Answer Correct ?    6 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are different types of Print Functions available in PHP?

902


Tell me what's the difference between include and require?

926


Which php framework is fastest?

931


What is the use of pear in php?

938


Tell me what are sql injections, how do you prevent them and what are the best practices?

863


Explain soundex() and metaphone().

962


When should you use a stored procedure?

903


What is difference between get and post in php?

1075


What is a php namespace?

913


How to execute a function in php?

889


What is the difference between overloading and overriding in php?

984


Is php easier than javascript?

939


Write a program in php to find the occurrence of a word in a string?

1034


What type of headers have to be added in the mail function to attach a file?

890


What is the use of preg_match in php?

932