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
Hey,
I think there's an error in the use of echo for PHP. Indeed, you're using a comma when it should be a dot for concatenation.
The generated code is: echo ("🎃 ~ Home.php:90 -> $data: ", $data);
echo ("🎃 ~ Home.php:90 -> $data: ", $data);
It should be: echo "🎃 ~ Home.php:90 -> \$data: " . print_r($data, true);
echo "🎃 ~ Home.php:90 -> \$data: " . print_r($data, true);
The text was updated successfully, but these errors were encountered:
@TonyLight Thanks. Will fix this ASAP
Sorry, something went wrong.
No branches or pull requests
Hey,
I think there's an error in the use of echo for PHP. Indeed, you're using a comma when it should be a dot for concatenation.
The generated code is:
echo ("🎃 ~ Home.php:90 -> $data: ", $data);
It should be:
echo "🎃 ~ Home.php:90 -> \$data: " . print_r($data, true);
The text was updated successfully, but these errors were encountered: