我想这样做,如果$hello
输入了 from 的话,$words
它们会被bonjour替换,但它不起作用。我该怎么做呢?
代码:
<?php
$words = $_POST['words'];
$hello = array('hello', 'hi', 'yo', 'sup');
$words = preg_replace('/\b'.$hello.'\b/i', '<span class="highlight">Bonjour</span>', $words);
echo $words;
?>