34 lines
375 B
Markdown
34 lines
375 B
Markdown
---
|
|
title: jsonNull
|
|
description: Json null
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: jsonNull
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Json null
|
|
|
|
|
|
|
|
|
|
### Type: [JSONValue](../types/JSONValue.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$jsonNull = ['_' => 'jsonNull'];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
jsonNull={_='jsonNull'}
|
|
|
|
```
|
|
|
|
|