7 lines
81 B
PHP
7 lines
81 B
PHP
|
<?php
|
||
|
|
||
|
$arr = array(9,1,2013);
|
||
|
$str = implode('/',$arr);
|
||
|
echo $str;
|
||
|
|
||
|
?>
|