<?php $a='I love you'; echo str_replace_first('z','ea',$a); function str_replace_first($this,$that,$where) { return substr($where,0,strpos($where,$this)). $that. substr($where,strpos($where,$this)+strlen($this)); }
You have javascript disabled. You will not be able to edit any code.