使用php

时间:2016-11-05 14:59:40

标签: php arrays string file

$输入=' mymyntralove.com' 我有一个阵列 $阵列=阵列('我'' myntra''爱'' myntralove&#39); 我的预期输出是: 我的 myntra 爱 .COM

<?php
$mystring = 'cheapestbricks.com.au';
$findmes   = ['cheapest','bricks'];

$array = explode("\n", file_get_contents('test.txt'));


foreach($array as $findme) {

    $pos = strpos($mystring, trim($findme));
    if ($pos === false) {
        //echo "The string '$findme' was not found in the string '$mystring'";
    } else {
        echo $findme.'<br/>';
    }
}

我从文本文件中读取单词并制作了一个数组并执行了此操作,但没有正确使用。有人知道请帮助

0 个答案:

没有答案