php array to string

<?php

$arr = array('h','e','l','l','o');
$string = implode($arr, '');
$string = implode($arr, '|');

?>
相关文章
相关标签/搜索