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.
preg_match работает до первого найденного вхождения.Надо регулярку составить таким образом, чтобы из этого [15,3] на выходе получить 3. я пишу так:
preg_match("/\d/", $string, $matches);
print_r($matches);
на выходе получаю вместо 15 вместо 3)
preg_match("/\[\d+?,(\d+?)\]/", $string, $matches);
print preg_replace("/^.*,(\d+).*$/","\\1",$string);