<!DOCTYPE html>
<html>
<body>

<?php
$arr = array('Hello','World!','I','love','Shanghai!');
echo join(" ",$arr);
?>

</body>
</html>