Site Admin
Site Admin Founder of MeaningArticles
1512 Views

PHP Convert Array to a String Example

Hello Dev.

We are using PHP’s implode function to convert array to a string. The implode function in php takes two parameters. In the first parameter, we pass the separator. This separator is used to separate the arrays, and however, if you don’t pass any argument, then it’ll return an empty separator. In the second

parameter, we pass the array object, an array which needs to be converted into a string.

<?php 
    $arrray = ['star wars', 'avengers', 'the matrix', 'ghost rider'];
    echo implode(' | ', $arrray);
?>

// star wars | avengers | the matrix | ghost rider

i'm hoping it assist you to, thanks for visit my article if you like my article then proportion together with your friend and social platform.