Lui: preg_match_all() [function.preg-match-all]: Compilation failed:

Beitrag lesen

Hallo,

ich habe eine Fehlermeldung die nicht recht deuten kann, denn eigentlich ist der Syntax soweit ich ihn verstanden habe OK:

Warning: preg_match_all() [function.preg-match-all]: Compilation failed: missing ) at offset 35 in C:\xampplite\htdocs\get\index.php on line 8

Warning: preg_match_all() [function.preg-match-all]: Compilation failed: missing ) at offset 35 in C:\xampplite\htdocs\get\index.php on line 10

preg_match_all("|document.write('<(.*)setHaendlerHit|Uism",$data, $items, PREG_PATTERN_ORDER);  
if (count($items[1])==0) {  
    preg_match_all("|document.write('<(.*)setHaendlerHit|Uism",$data, $items, PREG_PATTERN_ORDER);  
    }  
    for ($i=0; $i<count($items[1]); $i++) {  
    preg_match_all('|<a href="(.*)" target="_blank" onclick="|Uism',$items[1][$i], $regs, PREG_PATTERN_ORDER);  
    echo "<b>&middot;</b> ".$regs[1][0]."<br>\n";  
    }