summaryrefslogtreecommitdiff
path: root/Zend/tests/bug64677.phpt
blob: c3b168bd83b510b26eca0789ed7d35ccd0b9ceb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Bug #64677 (execution operator `` stealing surrounding arguments)
--FILE--
<?PHP
class cat {
    public function show_output($prepend, $output = '') {
    }
}
$cat = new cat();
$cat->show_output('Files: ', trim((string) `cd .`)); // this gives invalid args to shell_exec
$cat->show_output('Files: ', `cd .`); // this causes a segmentation fault
$cat->show_output(`cd .`); // this causes a segmentation fault

function show_outputa($prepend, $output) {
    echo "Okey";
}
show_outputa('Files: ', `cd .`); // this works as expected

?>
--EXPECT--
Okey