Answers for "php array to text"

PHP
7

php implode

$arr = array('Hello','World!','Beautiful','Day!');
echo implode(" ",$arr);
// Outputs: 'Hello World! Beautiful Day!'
Posted by: Guest on June-16-2020
1

php array to string

$requestAsString = print_r($_REQUEST, true);
Posted by: Guest on September-22-2021

Browse Popular Code Answers by Language