我正在试验一个问题 | (或)和 php.ini 中的正则表达式。
这是我想做的,例如我有这 3 句话:
“苹果很好吃”
“一天一苹果,医生远离我”
“我喜欢吃苹果”
假设我想用橙色来改变苹果这个词,所以这是我的代码:
$oldWord="apple";
$newWord="orange";
$text = preg_replace('#^' . $oldWord . ' #', $newWord, $text);
$text = preg_replace('# ' . $oldWord . ' #', $newWord, $text);
$text = preg_replace('# ' . $oldWord . '$#', $newWord, $text);
当然可以,但我还没有找到正确的组合,只用一行代码和关键字 | (或者)。
请问各位有什么建议吗?谢谢