php functions issue - please help - 50usd adwords voucher in return

Discussion in 'PHP' started by monkeyclap, Nov 29, 2010.

  1. #1
    hi, i have the following function which is meant to look for instances of "." and if it's not present then stick ".com" on the end, but for some reason it's sticking ".com" on the end of everything, so some strings end up being "domain.com.com.com", etc - you get the idea

    if(strpos($domain, '.') !== false) $domain .= ".com";
    PHP:
    any help appreciated. loads of thanks in advance!

    i have a 50usd adwords voucher which i don't need so you can have it if you can help out.
     
    monkeyclap, Nov 29, 2010 IP
  2. MyVodaFone

    MyVodaFone Well-Known Member

    Messages:
    1,048
    Likes Received:
    42
    Best Answers:
    10
    Trophy Points:
    195
    #2
    stripos()
    PHP:
    You misspelt it ?

    This is just an example of, one of the ways I use this function, based on your requirements.
    
    if (stripos($domain,".") !== false) // check if the DomainName has a .
        {
         // if it does do nothing
        } else {
          $domain = $domain,".com"; // so its DomainName.com 
        }
    
    PHP:
     
    MyVodaFone, Nov 29, 2010 IP
  3. namduong8889

    namduong8889 Peon

    Messages:
    36
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    i think it should be like this:

    if(strpos($domain, '.') == false) $domain .= ".com";
    Code (markup):
     
    namduong8889, Nov 29, 2010 IP
  4. monkeyclap

    monkeyclap Active Member

    Messages:
    836
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    85
    #4
    monkeyclap, Nov 29, 2010 IP
  5. MyVodaFone

    MyVodaFone Well-Known Member

    Messages:
    1,048
    Likes Received:
    42
    Best Answers:
    10
    Trophy Points:
    195
    #5
    Try my code above, I edited it while you where typing... and yeah sorry about stripos
     
    MyVodaFone, Nov 29, 2010 IP
  6. monkeyclap

    monkeyclap Active Member

    Messages:
    836
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    85
    #6
    legend, that's fixed it - if you need the voucher, please pm me

    thanks!
     
    monkeyclap, Nov 29, 2010 IP