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
So far (div 4.9) can show the contents of a variable (similar to the function var_export in PHP), as follows:
// create subparser function export($src, $items){ $v = $items[$src]; if (is_object($v)) $v = get_object_vars($v); return str_replace("\n","",var_export($v, true)); } div::setSubParser('export');
We are evaluating the possibility of creating a variable modifier or a sub-parser similar to:
{export}varname{/export}
The text was updated successfully, but these errors were encountered:
rafageist
No branches or pull requests
So far (div 4.9) can show the contents of a variable (similar to the function var_export in PHP), as follows:
We are evaluating the possibility of creating a variable modifier or a sub-parser similar to:
The text was updated successfully, but these errors were encountered: