mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
RFC: https://wiki.php.net/rfc/deprecations_php_8_5#deprecate_backticks_as_an_alias_for_shell_exec
60 lines
848 B
PHP
60 lines
848 B
PHP
--TEST--
|
|
syntax check
|
|
--SKIPIF--
|
|
<?php include "skipif.inc"; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$php = getenv('TEST_PHP_EXECUTABLE_ESCAPED');
|
|
|
|
$filename = __DIR__."/011.test.php";
|
|
$filename_escaped = escapeshellarg($filename);
|
|
|
|
$code = '
|
|
<?php
|
|
|
|
$test = "var";
|
|
|
|
class test {
|
|
private $var;
|
|
}
|
|
|
|
echo test::$var;
|
|
|
|
?>
|
|
';
|
|
|
|
file_put_contents($filename, $code);
|
|
|
|
var_dump(shell_exec("$php -n -l $filename_escaped"));
|
|
var_dump(shell_exec("$php -n -l some.unknown"));
|
|
|
|
$code = '
|
|
<?php
|
|
|
|
class test
|
|
private $var;
|
|
}
|
|
|
|
?>
|
|
';
|
|
|
|
file_put_contents($filename, $code);
|
|
|
|
var_dump(shell_exec("$php -n -l $filename_escaped"));
|
|
|
|
@unlink($filename);
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
string(%d) "No syntax errors detected in %s011.test.php
|
|
"
|
|
Could not open input file: some.unknown
|
|
NULL
|
|
string(%d) "
|
|
Parse error: %s expecting %s{%s in %s on line %d
|
|
Errors parsing %s011.test.php
|
|
"
|
|
Done
|