Skip to content

Superficial Reflections php

1001 Wege, PHP zum Segfaulten zu bringen

<?PHP

class Spam {
    function __toString() {
        (string)$this;
    }
};

(string)new Spam();

?>
<?PHP

$spam = array();
implode(&$spam, &$spam);

?>