5 lines
82 B
PHP
5 lines
82 B
PHP
|
|
<?php
|
||
|
|
$str = 'Hello,How,Are,You,Today';
|
||
|
|
echo implode('.', explode(',', $str));
|
||
|
|
?>
|