PHP nasıl dize bir karakter silebilirsiniz?
$ S = "waseem";
Are there a function like delChar($s , 2); ? which 2 is the index of the Character , I search but I didn't find anything . any ideas ?
substr_replace istediğiniz şeydir.
$s = substr_replace($s, '', 2, 1);