A有一句話:如何從MySQL數據庫中查找並替換文本中的單詞?
「如何從mysql數據庫中查找並替換文本中的單詞?」
和MySQL表單詞,有3列id,word和replaceWord。 我在數據庫中有超過4000個單詞。
表:
id word replaceWord
1 text sentence
2 word letter
3 mysql MySQL
4 .. ...
5 .. ...
6 .. ...
結果: 「如何找到並從更換信在句子的MySQL數據庫」
我知道如何做到這一點沒有數據庫,但我需要數據庫。
<?php
$text="How to find and replace word in text from mysql database?";
$replaceWord=array( "text" => "sentence", "word" => "letter", "mysql" => "MySQL");
echo strtr($tekst, $replaceWord);
?>
我是間諜 「背景」 成爲 「consentence」或「劍」變爲「Sletter」 – 2011-01-28 14:34:51