Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My latest issue involves trying to find "http://" in a variable. This variable contains the contents of a comments section on a clients website. I have seen all kinds of answers but none of them seem to work. I looked at a few other posts on here and I have yet to get the best answer. Here is what I have so far:

if(strpos($comments, 'http://') == true) {
  // Does stuff here
}

I noticed other people use preg_match and some said to do it in an array. I am getting confused, too many options. Just kidding. I would like some clarification though and any advice would be greatly appreciated.

share|improve this question
In that post they did === instead of ==, I will give that a try. – Michael Garrison Jun 6 '12 at 19:21

2 Answers

up vote 5 down vote accepted

You'll need to say:

if(strpos($comments, 'http://') !== false) {

...since it can return 0 (which is falsey) if http:// is at the beginning of the string.

NOTE: This will only find the first occurrence of http:// in the string.

Take a close look at the reference: http://php.net/manual/en/function.strpos.php

share|improve this answer
So >= will search the whole string? – Michael Garrison Jun 6 '12 at 19:22
strpos() will search the whole string until the first occurrence of the needle is found or until end-of-string is reached. – Jonathan M Jun 6 '12 at 19:23
Thank you very much, I'll give this a try and see how it turns out. The main thing I am trying to do is block links in the comments. – Michael Garrison Jun 6 '12 at 19:26
Actually, str_ireplace() may be more what you want, then. php.net/manual/en/function.str-ireplace.php – Jonathan M Jun 6 '12 at 19:29
Would this work even if I don't want to replace the http://? In most cases I get spam comments like "byfrgpvsipvtfok, habyqiupyh , [url=---------------.com]ceasdfasdfasdfg[/url], --------------.com habyqiupyh", I want to keep the form from submitting when it comes across the http://. – Michael Garrison Jun 6 '12 at 19:40
show 3 more comments

You need to change code like that:

if(strpos($comments, 'http://') === false) {

//no link }

because strpos return integer which is position your string.

Example: full string: "http://stackoverflow.com hello" you finding: "http"

Naturally it return 0.

But full string: "ahttp://stackoverflow.com" you finding: "http"

it return 1.

So you must use === operator to check is really 'boolean false'.

If you try to check with == operator, you maybe get fail because it get 0 as false.

more detail: http://php.net/strpos

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.