fork download
  1. <?php
  2. $str = "Chuck Ray Norris";
  3. $spls = explode(" ", $str);
  4. echo $spls[0] . " " . $spls[count($spls)-1][0] . ".";
  5. // your code goes here
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
Chuck N.