Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
Include $path;
3
Include_Once $path;
4
Require $path;
5
Require_Once $path;
6
 
7
List($one, $two) = $array;
8
if (IsSet($one)) {
9
    Echo 'hi';
10
    Print('hi');
11
    if (Empty($two)) {
12
        Break;
13
    }
14
    Unset($array);
15
    Continue;
16
}
17
 
18
$obj = New MyObj();
19
Eval($code);
20
Return false;
21
Exit();
22
Die();
23
 
24
Declare(ticks=1) {
25
}
26
 
27
if (Function_Exists('myFunction') === TRUE) {
28
    $retval = MyFunction(true);
29
    $keys = Array_Keys($array);
30
}
31
 
32
function getType() {}
33
 
34
?>