vote up 0 vote down star

I don't know if this is enough data to feed off of, but I have

preg_match('/SAMPLETEXT/', $bcurl, $cookie1);

and I was wondering if I can make it

preg_match($newfunction, $bcurl, $cookie1);

but when I do, I get this error "Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in".

How can I make it check for my new function, rather than have it check just for "SAMPLETEXT".

flag

What is the value of $newfunction? – cpharmston Sep 6 at 21:21
The value of $newfunction consists of a random key string of around 5-10 numbers that is inserted into the SQL on another file, on load. – Joey Sep 6 at 21:23

1 Answer

vote up 2 vote down check

Try preg_match("/$newfunction/", $bcurl, $cookie1); so that you are providing the required delimiters (using a delimiter that isn't going to be in $newfunction).

But note that the documentation says "Do not use preg_match() if you only want to check if one string is contained in another string. Use strpos() or strstr() instead as they will be faster."

link|flag
This was a pure failure. It was checking the website for $function instead of the the actual random key that $function is. – Joey Sep 6 at 21:25
I'm using cURL. – Joey Sep 6 at 21:26
2  
@Joey: Did you use double quotes or single quotes? – ysth Sep 6 at 21:30
2  
@Joey: where $bcurl comes from is really irrelevant. Either the preg_match is going to work or it isn't. Did you use double quotes as in my example? – ysth Sep 6 at 21:35
1  
Remember that you should escape the contents of $newfunction with preg_quote if it can contain reserved characters for regular expressions, such as ., ` or ?`. – Johannes Rössel Sep 6 at 21:52
show 1 more comment

Your Answer

Get an OpenID
or

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