We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f7566c commit 0aeb92dCopy full SHA for 0aeb92d
README.md
@@ -22,6 +22,11 @@ $jsPhpize = new JsPhpize();
22
echo $jsPhpize->compile('foo = { bar: { "baz": "hello" } }');
23
```
24
25
+This code will output the following PHP code:
26
+```php
27
+$foo = array( "bar" => array( "baz" => "hello" ) );
28
+```
29
+
30
Or use render to execute it directly:
31
```php
32
use JsPhpize\JsPhpize;
0 commit comments