Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/documentation/php-interop.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Use the `php/` prefix to access the global variables (superglobals) in combinati

Named constants set with PHP [`define`](https://www.php.net/manual/en/function.define.php) can be accessed in Phel via `php/CONSTANT_NAME`.

```
```phel
(php/define "MY_SETTING" "My value") # Calls PHP define('MY_SETTING', 'My value");
php/MY_SETTING # Returns "My value"
```
Expand Down
Loading