home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / bug-quote_new_parser.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  667 b   |  26 lines

  1. <?php
  2. /**
  3.  * @package tests
  4.  */
  5. /**
  6.  * The tokenizer splits up strings that have inline variables
  7.  * and will fool the DEFINE_PARAMS_PARENTHESIS handler here
  8.  */
  9. define('bqnp_tester',"testing this $parser($me thingo\"");
  10. /**
  11.  * The tokenizer splits up strings that have inline variables
  12.  * and will fool the GLOBAL_VALUE handler here
  13.  * @global string $bqnp_tester
  14.  */
  15. $bqnp_tester = "testing this $parser;$me thingo\"";
  16.  
  17. /**
  18.  * The tokenizer splits up strings that have inline variables
  19.  * and will fool the STATICVAR handler here
  20.  * @staticvar string
  21.  */
  22. function bqnp_testie()
  23. {
  24.     static $test = "testing this $parser;$me thingo\"";
  25. }
  26. ?>