mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-12 10:26:32 +00:00
Document combining JSON constants
Working out how to do this took Slack and StackOverflow. Documenting so others know what to do.
This commit is contained in:
committed by
Fabien Potencier
parent
4eea72c25c
commit
7f4ecd66f1
@@ -15,7 +15,9 @@ Arguments
|
||||
---------
|
||||
|
||||
* ``options``: A bitmask of `json_encode options`_ (``{{
|
||||
data|json_encode(constant('JSON_PRETTY_PRINT')) }}``)
|
||||
data|json_encode(constant('JSON_PRETTY_PRINT')) }}``. Combine constants using `Twig's bitwise operators`: ``{{
|
||||
data|json_encode(constant('JSON_PRETTY_PRINT') b-or constant('JSON_HEX_QUOT') }}``)
|
||||
|
||||
.. _`json_encode`: https://secure.php.net/json_encode
|
||||
.. _`json_encode options`: https://secure.php.net/manual/en/json.constants.php
|
||||
.. `Twig's bitwise operators`: https://twig.symfony.com/doc/2.x/templates.html#logic
|
||||
|
||||
Reference in New Issue
Block a user