<?php
$hotel=” How to study PHP “;
$hotel= trim($hotel);
$array=explode(” “, $hotel);
$hotel=implode(“-“, $array);
echo ($hotel);
?>
Study PHP Skills, Share PHP Code
<?php
$hotel=” How to study PHP “;
$hotel= trim($hotel);
$array=explode(” “, $hotel);
$hotel=implode(“-“, $array);
echo ($hotel);
?>