preg_replace seg hata atar

0 Cevap php

Ben aşağıdaki kodu çalıştırdığınızda; Ben bir seg hatası her zaman olsun! Bu bilinen bir hata mı? Nasıl bu kod işi yapabilir?

<?php
$doc = file_get_contents("http://prairieprogressive.com/");
$replace = array(
    "/<script([\s\S])*?<\/ ?script>/",
    "/<style([\s\S])*?<\/ ?style>/",
    "/<!--([\s\S])*?-->/",
    "/\r\n/"
);
$doc = preg_replace($replace,"",$doc);
echo $doc;
?>

: Hata (tabii ki) gibi görünüyor

[root@localhost 2.0]# php test.php
Segmentation fault (core dumped)

0 Cevap