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
why $bh->apply([ 'block' => 'button' ]); doesn't output any html i have to use echo($bh->apply([ 'block' => 'button' ])); in order to get it
$bh->apply([ 'block' => 'button' ]);
echo($bh->apply([ 'block' => 'button' ]));
The text was updated successfully, but these errors were encountered:
This is because you can easily output it with echo.
Better to have echo in echo $bh->apply(...); than ob-wrapper in ob_start(); $bh->apply(...); $res = ob_get_clean();, right?
echo
echo $bh->apply(...);
ob_start(); $bh->apply(...); $res = ob_get_clean();
Sorry, something went wrong.
No branches or pull requests
why
$bh->apply([ 'block' => 'button' ]);
doesn't output any htmli have to use
echo($bh->apply([ 'block' => 'button' ]));
in order to get itThe text was updated successfully, but these errors were encountered: