code.fastix.org

Dateiansicht:

Datei:Projekte -> PHP:use_strict -> Test_2.php
md5:1e498195ce21ad0da7d3a7d2f827b974
sha1:6b95bff28509a03750c50b8c737179798d9e8073
Download-Link:Download
  1. <?php
  2. DEFINE('DEBUG', 2); require_once 'use_strict.php';
  3. $foo=foo;
  4. include 'not.existent.file';
  5. $baz=0;
  6. if (0 == $baz) { trigger_error('$baz ist 0! Durch 0 kann nicht dividiert werden.', E_USER_ERROR); }
  7. echo "4 / $baz = " . 4 / $baz;
  8. ?>
  9. <p>(Not) Fine!</p>
  10. </body>
  11. </html>