在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
这些是一些常用的方法来删除字符串中的字符或模式。您可以根据具体的需求选择适合您的方法。