Answers for "turn php array into string"

PHP
5

Array to String Conversion in PHP

$gadget = array( 'computer', 'mobile', 'tablet' );
echo implode($arr);
Posted by: Guest on July-05-2020
2

convert numeric array to string array php

$integerIDs = array_map('intval', explode(',', $string));
Posted by: Guest on September-15-2020

Code answers related to "turn php array into string"

Browse Popular Code Answers by Language