phpCopy<?php $arr = array("This","is", "an", "array"); $string = implode(" ",$arr); echo "The array is converted to the string."; echo " "; echo "The string is '$string'"; ?>