代替我有一個字符串:查找字符串文本和陣列
$string = 'I love my kitty and other animals.';
$categories = array(
'kitty' => 'cat',
'teddy' => 'bear',
'someting' => 'other',
);
我想就其中找到在陣列中的文本,並將其轉換功能。 成才,如:
function find_animal_in_string($string)
{
// If $string contains one of the element in array print this array value
// how to do that?
}
所以我首選的結果將是:
echo $this->find_animal_in_string('I love my leon and other animals.') //echo cat
echo $this->find_animal_in_string('I do not like teddys in mountains.') //echo bear
會感謝你的幫助。我已經嘗試strpos和array_key_exists,但沒有爲我工作。
這裏有什麼問題? – Calimero
如何製作打印結果的功能? – Tikky
做功能,打印結果?你有嘗試過什麼嗎? – Calimero