forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path014.phpt
More file actions
57 lines (47 loc) · 1.78 KB
/
Copy path014.phpt
File metadata and controls
57 lines (47 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
--TEST--
syntax highlighting
--SKIPIF--
<?php include "skipif.inc"; ?>
--FILE--
<?php
$php = getenv('TEST_PHP_EXECUTABLE_ESCAPED');
$filename = __DIR__."/014.test.php";
$code = '
<?php
$test = "var"; //var
/* test class */
class test {
private $var = array();
public static function foo(Test $arg) {
echo "hello";
var_dump($this);
}
}
$o = new test;
?>
';
file_put_contents($filename, $code);
$filename_escaped = escapeshellarg($filename);
var_dump(`$php -n -s $filename_escaped`);
var_dump(`$php -n -s unknown`);
@unlink($filename);
echo "Done\n";
?>
--EXPECT--
string(1158) "<pre><code style="color: #000000">
<span style="color: #0000BB"><?php
$test </span><span style="color: #007700">= </span><span style="color: #DD0000">"var"</span><span style="color: #007700">; </span><span style="color: #FF8000">//var
/* test class */
</span><span style="color: #007700">class </span><span style="color: #0000BB">test </span><span style="color: #007700">{
private </span><span style="color: #0000BB">$var </span><span style="color: #007700">= array();
public static function </span><span style="color: #0000BB">foo</span><span style="color: #007700">(</span><span style="color: #0000BB">Test $arg</span><span style="color: #007700">) {
echo </span><span style="color: #DD0000">"hello"</span><span style="color: #007700">;
</span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$this</span><span style="color: #007700">);
}
}
</span><span style="color: #0000BB">$o </span><span style="color: #007700">= new </span><span style="color: #0000BB">test</span><span style="color: #007700">;
</span><span style="color: #0000BB">?>
</span></code></pre>"
Could not open input file: unknown
NULL
Done