如果在haystack中找到needle,则返回boolean的字符串搜索函数

时间:2017-07-15 19:27:23

标签: php string stripos

我正在编写一个简单的函数,它将包含url的字符串转换为可点击的链接。如果字符串包含协议前缀之一,转换本身很简单但是基本验证的一部分似乎非常困难。

目前我的代码如下:

<?php

function link2code($link) {
    if (stripos($link, 'http://' or 'https://' or 'ftp://' or 'ftps://') === true) {
        return "<a href=\"$link\">$link</a>";
    } else {
        echo('Please provide whole link with protocol part, for example: http://myawesomewebsite.com');
    }
}

echo link2code("http://127.0.0.1");

如你所见,我想返回布尔值,告诉针是否在大海捞针。我怎样才能实现它?

7 个答案:

答案 0 :(得分:4)

您可以使用preg_match

if(preg_match("~^(ht|f)tps?://~i", $link)) { //...etc

答案 1 :(得分:3)

结帐此代码:

class Test
{

     public function index()
     {
         $link = "http://127.0.0.1";
         $this->checkLink("http://127.0.0.1");        //Yes
         $this->checkLink("hsttp://127.0.0.1");        //No
     }

     private function checkLink($link)
     {
         if (stripos($link, 'http://') !== false
             || stripos($link, 'http://') !== false
             || stripos($link, 'ftp://') !== false
             || stripos($link, 'ftps://') !== false)
         {
             echo 'Yes';
         }
         else
         {
             echo 'No';
         }
      }

}

答案 2 :(得分:1)

您可以通过定义自定义函数进行迭代,并找到找到的匹配项创建链接。

function strPosition($haystack, $needle, $offset=0) {
  if (!is_array($needle)) $needle = array($needle);
    foreach ($needle as $query) {
      if (strpos($haystack, $query, $offset) !== false) return true; // stop on first true result
    }
    return false;
}

function link2code($link) {
  $array = array('http://', 'https://', 'ftp://', 'ftps://');

  $match = strPosition($link, $array);
  if ($match == true) {
    return "<a href=\"$link\">$link</a>";
  } else {
    echo('Please provide whole link with protocol part, for example: http://myawesomewebsite.com');
  } 
}

答案 3 :(得分:1)

可以使用正则表达式完成。 虽然使用多次stripos()也可以。 这条线路会长,但可能会更便宜。

为了便于阅读,我更喜欢正则表达式

<?php

function link2code($link) {
    if (preg_match('#^(https?|ftps?)://#i', $link)) {
        return "<a href=\"$link\">$link</a>";
    } else {
        echo('Please provide whole link with protocol part, for example: http://myawesomewebsite.com');
    }
}

echo link2code("http://127.0.0.1");

答案 4 :(得分:1)

你可以试着改写一下这个问题:

不要检查链接中的协议是否存在,而是尝试检查链接中的协议是否是协议之一:

function link2code($link) {

    $scheme = parse_url($link, PHP_URL_SCHEME);
    if(!in_array($scheme,['http','https','ftp','ftps']) {
        return "<a href=\"$link\">$link</a>";
    } else { 
        echo ()
    }
}

在你的问题范围之外:

你的功能做了不同的事情:

  • 验证网址
  • 返回字符串或返回void
  • 在某些情况下它会回响。

您可以尝试将验证与格式分开,并确保函数始终返回字符串,或者抛出异常。

function link2code($link) {
    if(validateLink($link)) {
        return "<a href=\"$link\">$link</a>";
    } else {
        throw new \Exception("Please provide whole link with protocol part, for example: http://myawesomewebsite.com'");
    }
}

function validateLink($link) {
    $scheme = parse_url($link, PHP_URL_SCHEME);
    return in_array($scheme,['http','https','ftp','ftps']);
}

答案 5 :(得分:0)

你可以使用in_array()。
http://php.net/manual/en/function.in-array.php

function link2code($link) {
    $arr = array('http:/', 'https:', 'ftp://', 'ftps:/');
    If(in_array(substr($link,0,6), $arr)){
        return "<a href=\"$link\">$link</a>";
    } else {
         echo('Please provide whole link with protocol part, for example: http://myawesomewebsite.com');
    }
}

echo link2code("https://127.0.0.1");

https://3v4l.org/meI1r
该数组包含最小公共字符数(6),以便我可以在函数中进行比较 因此,如果它们与数组不匹配,那么substr将查看六个第一个字符,它不是唯一的链接字符串。

意味着字符串click here https://127.0.0.1将失败

当然,如果您不需要验证它是否只是一个链接字符串,您可以从代码中删除substr并在数组中添加“完整”项。

答案 6 :(得分:0)

尝试使用正则表达式和preg_match

function link2code($link) {
    if ( ! preg_match('/^(http(s)?|ftp(s)?):\/\//i', $link)) {
        echo 'Please provide whole link with protocol part, for example: http://myawesomewebsite.com';
        return FALSE;
    }
    return sprintf('<a href="%1$s">%1$s</a>', $link);
}

echo link2code("http://127.0.0.1");
echo link2code("https://127.0.0.1");