охрана труда 167 589
пожарная охрана 75 967
организация охраны 21 617
$file = fopen("./file.txt", "r");
while(!feof($file))
{
$str = fgets($file);
preg_match("/([0-9]+)?.([0-9]+)$/i", $str, $matches);
print_r($matches);
}
fclose($file);
Array
(
)
Array
(
)
Array
(
[0] => 21 617
[1] => 21
[2] => 617
)
<?php
$file = fopen("./file.txt", "r");
while(!feof($file))
{
$str = fgets($file);
$matches = [];
preg_match("/\d+\s?\d+/", $str, $matches);
print_r($matches);
}
fclose($file);
охрана труда 167 589\r\n