Skip to content

Commit 1e48fbb

Browse files
chore(docs): catch-up french translation (#1978)
1 parent 4e6d67e commit 1e48fbb

2 files changed

Lines changed: 179 additions & 77 deletions

File tree

β€Ždocs/extensions.mdβ€Ž

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,19 @@ While some variable types have the same memory representation between C/PHP and
8888
This table summarizes what you need to know:
8989

9090
| PHP type | Go type | Direct conversion | C to Go helper | Go to C helper | Class Methods Support |
91-
| ------------------ | ----------------------------- | ----------------- | --------------------------------- | ---------------------------------- | --------------------- |
92-
| `int` | `int64` | βœ… | - | - | βœ… |
93-
| `?int` | `*int64` | βœ… | - | - | βœ… |
94-
| `float` | `float64` | βœ… | - | - | βœ… |
95-
| `?float` | `*float64` | βœ… | - | - | βœ… |
96-
| `bool` | `bool` | βœ… | - | - | βœ… |
97-
| `?bool` | `*bool` | βœ… | - | - | βœ… |
98-
| `string`/`?string` | `*C.zend_string` | ❌ | `frankenphp.GoString()` | `frankenphp.PHPString()` | βœ… |
99-
| `array` | `frankenphp.AssociativeArray` | ❌ | `frankenphp.GoAssociativeArray()` | `frankenphp.PHPAssociativeArray()` | βœ… |
100-
| `array` | `map[string]any` | ❌ | `frankenphp.GoMap()` | `frankenphp.PHPMap()` | βœ… |
101-
| `array` | `[]any` | ❌ | `frankenphp.GoPackedArray()` | `frankenphp.PHPPackedArray()` | βœ… |
102-
| `mixed` | `any` | ❌ | `GoValue()` | `PHPValue()` | ❌ |
103-
| `object` | `struct` | ❌ | _Not yet implemented_ | _Not yet implemented_ | ❌ |
91+
|--------------------|-------------------------------|-------------------|-----------------------------------|------------------------------------|-----------------------|
92+
| `int` | `int64` | βœ… | - | - | βœ… |
93+
| `?int` | `*int64` | βœ… | - | - | βœ… |
94+
| `float` | `float64` | βœ… | - | - | βœ… |
95+
| `?float` | `*float64` | βœ… | - | - | βœ… |
96+
| `bool` | `bool` | βœ… | - | - | βœ… |
97+
| `?bool` | `*bool` | βœ… | - | - | βœ… |
98+
| `string`/`?string` | `*C.zend_string` | ❌ | `frankenphp.GoString()` | `frankenphp.PHPString()` | βœ… |
99+
| `array` | `frankenphp.AssociativeArray` | ❌ | `frankenphp.GoAssociativeArray()` | `frankenphp.PHPAssociativeArray()` | βœ… |
100+
| `array` | `map[string]any` | ❌ | `frankenphp.GoMap()` | `frankenphp.PHPMap()` | βœ… |
101+
| `array` | `[]any` | ❌ | `frankenphp.GoPackedArray()` | `frankenphp.PHPPackedArray()` | βœ… |
102+
| `mixed` | `any` | ❌ | `GoValue()` | `PHPValue()` | ❌ |
103+
| `object` | `struct` | ❌ | _Not yet implemented_ | _Not yet implemented_ | ❌ |
104104

105105
> [!NOTE]
106106
>

0 commit comments

Comments
Β (0)