在PHP中,您可以使用多種方法來刪除字符串,以下是一些常用的方法:
$str = "hello world";
$str = substr($str, 0, 2) . substr($str, 3);
echo $str; // Output: helo world
$str = "hello world";
$str = str_replace(" ", "", $str);
echo $str; // Output: helloworld
$str = "hello123world";
$str = preg_replace('/\d/', '', $str);
echo $str; // Output: helloworld
這些是一些常用的方法來刪除字符串中的字符或模式。您可以根據具體的需求選擇適合您的方法。