3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getReplacedStr($str, $searchStr, $replaceWith){ $arr = explode(' ', $str); $firstElement = array_shift($arr); if($searchStr == $firstElement){ $finalStr = $replaceWith.' '.implode(' ', $arr); }else{ $finalStr = $str; } return $finalStr; } $replaceWith = 'Hi'; $searchStr = 'Hello'; $str = 'Hello World Hello World'; $str2 = 'Super World Hello World'; echo getReplacedStr($str, $searchStr, $replaceWith); echo "\n"; echo getReplacedStr($str2, $searchStr, $replaceWith);

preferences:
29.2 ms | 406 KiB | 5 Q