Ben şöyle bir dize varsa:
Bye - Merhaba
Nasıl php bulmak yapmak ve koğuşlarda bir specifc karakter ve dize kalanını silebilirsiniz
Bir örnek gibi
Bye - Merhaba
karakteri bulmak -
ve dize ile sol
Merhaba
Kullan strpos
to find the position of the first occurence of a substring and then substr
a> sadece o konuma kadar her şeyi almak için:
$pos = strpos($str, '-');
if ($pos !== false) { // strpos returns false if there is no needle in the haystack
$str = substr($str, 0, $pos);
}
Ve PHP 5.3 ve sonrasında da strstr
işlevini kullanabilirsiniz eğer with the third parameter set to true.