We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PHP Version: 8.1 OS: Ubuntu
Hi, I try to test my custom rule with using @filter, like this:
function f() { /** * @warning params of request without any check * @filter $_POST ^_POST$ */ $x = $_POST[$paramName]; }
but i find in result of test:
$x = $a['f']; $x = $_GET['test']; $x = $_REQUEST['test']; $a = $_POST['test'];
i am waiting for only this
$a = $_POST['test'];
why i have unexpectable results? Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PHP Version: 8.1
OS: Ubuntu
Hi, I try to test my custom rule with using @filter, like this:
but i find in result of test:
i am waiting for only this
why i have unexpectable results?
Thanks!
The text was updated successfully, but these errors were encountered: