PageRenderTime 141ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/php/constants/runme.php

#
PHP | 28 lines | 22 code | 6 blank | 0 comment | 2 complexity | 5de75edfac7dea9cd81e78b3bc479a9b MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. <?php
  2. require "example.php";
  3. print "ICONST = " . ICONST . " (should be 42)\n";
  4. print "FCONST = " . FCONST . " (should be 2.1828)\n";
  5. print "CCONST = " . CCONST . " (should be 'x')\n";
  6. print "CCONST2 = " . CCONST2 . " (this should be on a new line)\n";
  7. print "SCONST = " . SCONST . " (should be 'Hello World')\n";
  8. print "SCONST2 = " . SCONST2 . " (should be '\"Hello World\"')\n";
  9. print "EXPR = " . EXPR . " (should be 48.5484)\n";
  10. print "iconst = " . iconst . " (should be 37)\n";
  11. print "fconst = " . fconst . " (should be 3.14)\n";
  12. if (EXTERN!="EXTERN") {
  13. print "EXTERN = " . EXTERN . " (Arg! This shouldn't print anything)\n";
  14. } else {
  15. print "EXTERN defaults to 'EXTERN', it probably isn't defined (good)\n";
  16. }
  17. if (FOO!="FOO") {
  18. print "FOO = " . FOO . "(Arg! This shouldn't print anything)\n";
  19. } else {
  20. print "FOO defaults to 'FOO', it probably isn't defined (good)\n";
  21. }
  22. ?>