fork download
  1. <?php
  2.  
  3. $str = '31 марта 2016, 14:00';
  4. preg_match('/(.*),.*?([\\d:]+)/', $str, $matches);
  5. print_r($matches);
Success #stdin #stdout 0.02s 25508KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 31 марта 2016, 14:00
    [1] => 31 марта 2016
    [2] => 14:00
)