123456789101112131415161718192021 |
- --TEST--
- Bug
- --FILE--
- <?PHP
- class cat {
- public function show_output($prepend, $output = '') {
- }
- }
- $cat = new cat();
- $cat->show_output('Files: ', trim((string) `cd .`));
- $cat->show_output('Files: ', `cd .`);
- $cat->show_output(`cd .`);
- function show_outputa($prepend, $output) {
- echo "Okey";
- }
- show_outputa('Files: ', `cd .`);
- ?>
- --EXPECT--
- Okey
|