fork download
  1. <?php
  2.  
  3. // your code goes here
  4. $str = 'Кемерово, Кемеровская область, Россия';
  5. list($city, $region) = explode(', ', $str);
  6. var_dump($city, $region);
Success #stdin #stdout 0.01s 52488KB
stdin
Standard input is empty
stdout
string(16) "Кемерово"
string(37) "Кемеровская область"