Can someone help debug this error?
Warning: preg_replace() [function.preg-replace]: Compilation failed: nothing to repeat at offset 1
//Generate uid
function gen_uid($len=40) {
$hex = md5("what" . uniqid("", true));
$pack = pack('H*', $hex);
$tmp = base64_encode($pack);
$uid = preg_replace("#(*UTF8)[^A-Za-z0-9]#", "", $tmp);
$len = max(4, min(128, $len));
while (strlen($uid) < $len)
$uid .= gen_uid(22);
return substr($uid, 0, $len);
}
What causes this? Is it a PHP issue or something else? The application works fine on my local machine but not on the server.
* in regex means to match the previous character 0 or more times, while ( starts a capturing group. So, the * has nothing to repeat, since what comes before the * is a (, which cannot be repeated by itself, hence this warning.
To fix it, just escape the *, like so:
$uid = preg_replace("#(\*UTF8)[^A-Za-z0-9]#", "", $tmp);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With