PHP nasıl bir dizeden charcter silebilirsiniz?

1 Cevap php

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 ?

1 Cevap

substr_replace istediğiniz şeydir.

$s = substr_replace($s, '', 2, 1);