preg_match(): No ending delimiter

85 Views Asked by At

We are using ViPER Guestbook in our websites and getting following error messages:

[20-Jun-2015 12:01:40 UTC] PHP Warning:  preg_match(): No ending delimiter '/' found in /home/...../...../gb/index.php on line 277
[20-Jun-2015 12:01:40 UTC] PHP Warning:  preg_match(): No ending delimiter '/' found in /home/....../...../gb/index.php on line 278

These lines are:

(!preg_match("/^".PFIX."CUSTOM",$_key)) &&
(!preg_match("/^".PFIX."RATING",$_key))) {

The full code is:

      $_b = true;
  foreach ($arg as $_key => $_val) {
    if ((!in_array($_key,$_paramlist)) &&
        (!preg_match("/^".PFIX."CUSTOM",$_key)) &&
        (!preg_match("/^".PFIX."RATING",$_key))) {
      if (is_array($_val)) {
        foreach ($_val as $_inkey => $_inval) {
          $_param .= "&".urlencode($_key)."[".
          urlencode($_inkey)."]=".urlencode($_inval);
        }
      }
      else {
        $_param .= "&".urlencode($_key)."=".urlencode($_val);
      }
    }
    elseif ($_key != PFIX."decode")
      $_b = false;
  }

Where should the ending delimiter '/' be in this code?

Please help.

Thanks.

Lakshmanan

1

There are 1 best solutions below

0
On

Thanks for your help.

We have corrected the code to as follows:

    (!preg_match("/^".PFIX."CUSTOM/",$_key)) &&
    (!preg_match("/^".PFIX."RATING/",$_key))) {

and there is no error messages as of now.

Thanks,

Lakshmanan