Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
$file = explode(PHP_EOL,$textfile->read_file("name.txt",60));
foreach($file as $str) {
list($r1,$r2,$r3) = preg_split('#^(\d{3})|\-(\d{3})|(\d{4})$#',$str,0,PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE);
echo $r1.$r2.$r3; }
$r1 = substr($textfile, 0, 3);
$r2 = substr($textfile, 4, 3);
$r3 = substr($textfile, 7, 4);