searching " character

Discussion in 'PHP' started by antituhan, Jun 10, 2011.

  1. #1
    how can i search " character from some function on php?

    im trying:
    $check = strpos($send, """); <- error, and then
    $check = strpos($send, "&quot;"); <- error too

    thank you and any comment will be appreciate
     
    antituhan, Jun 10, 2011 IP
  2. shofstetter

    shofstetter Well-Known Member

    Messages:
    178
    Likes Received:
    7
    Best Answers:
    1
    Trophy Points:
    120
    #2
    try:

    $check = strpos($send, "\"");
     
    shofstetter, Jun 10, 2011 IP
  3. antituhan

    antituhan Peon

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    thx a lot for help mate
     
    antituhan, Jun 10, 2011 IP