drflkphi675447 2017-01-19 14:44
浏览 67
已采纳

在php中的句子中找到一个单词

I have this sentence:

$newalt="My name is Marie";

I want to include a page if marie or josh is found:

$words = array("marie", "josh");

$url_string = explode(" ", $newalt);

if(!in_array($url_string, $words)){
    echo "marie or josh are not in array";
}

the problem is, when I run this php it shows "marie or josh are not in array" and marie is the array (or should be). What is wrong?

  • 写回答

4条回答 默认 最新

  • dow46218 2017-01-19 14:52
    关注

    The solution using array_intersect and array_map functions:

    $newalt = "My name is Marie";
    $words = ["marie", "josh"];
    
    $url_string = explode(" ", $newalt);
    
    if (empty(array_intersect($words, array_map("strtolower", $url_string)))) {
        echo "marie or josh are not in array";
    }
    

    http://php.net/manual/en/function.array-intersect.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思