我需要删除"from products where id = 153183"
. id 可以更改,因此我需要使用 preg_replace 删除单词“from”之后的所有内容,然后可能使用 str_replace 删除。我有以下内容,但这只会从字符串中的最后一个单词中删除。谁能建议我需要添加什么?
//doesn't work
$str = "select id, productdescription, category, price, code, manufacturer, categoryid from products where id = 153183";
$new_str = preg_replace('/from$/', '', $str);