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
The backtick execution operator can have variables that are interpolated, but these are not parsed.
<?php `hello $world`;
Actual:
(program [0, 0] - [2, 0] (php_tag [0, 0] - [0, 5]) (expression_statement [1, 0] - [1, 15] (shell_command_expression [1, 0] - [1, 14])))
Expected:
(program [0, 0] - [2, 0] (php_tag [0, 0] - [0, 5]) (expression_statement [1, 0] - [1, 15] (shell_command_expression [1, 0] - [1, 14]))) (string [1, 1] - [1, 7]) (variable_name [1, 7] - [1, 13] (name [1, 8] - [1, 13])))))
The text was updated successfully, but these errors were encountered:
I created some tests for this.
Sorry, something went wrong.
Beautiful! Thanks for the tests. This should be fairly straight forward once all the quirks in heredoc has been ironed out
Adds support for interpolation in execution operators. Closes tree-si…
48d3021
…tter#135
670d1eb
No branches or pull requests
The backtick execution operator can have variables that are interpolated, but these are not parsed.
Actual:
Expected:
The text was updated successfully, but these errors were encountered: