fork download
  1. <?php
  2. $str = "Иван Иванов";
  3. $result = explode(" ", $str);
  4. echo $result[0] . ' ' . mb_substr($result[1], 0, 1) . '.';
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
Иван И.