Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 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
?>