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
like php here:
http://php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc
const VARIABLE_REGEX = <<<'REGEX' \{ \s* ([a-zA-Z_][a-zA-Z0-9_-]*) \s* (?: : \s* ([^{}]*(?:\{(?-1)\}[^{}]*)*) )? \} REGEX;
I want define VARIABLE_REGEX above, how to write in zephir???
The text was updated successfully, but these errors were encountered:
you cant. I use public static instead
Sorry, something went wrong.
Is the heredoc syntax itself supported though?
No branches or pull requests
like php here:
http://php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc
I want define VARIABLE_REGEX above, how to write in zephir???
The text was updated successfully, but these errors were encountered: