fork download
  1. <?php
  2.  
  3. $str = '31 марта 2016, четверг. 17:00 МСК';
  4. preg_match('/(.*),.*?([\\d:]+)/', $str, $matches);
  5. print_r($matches);
Success #stdin #stdout 0.01s 52488KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 31 марта 2016, четверг. 17:00
    [1] => 31 марта 2016
    [2] => 17:00
)