Ptr returns a pointer to the internal PHP value, and is mostly used for passing to C functions.
()
| 268 | // Ptr returns a pointer to the internal PHP value, and is mostly used for |
| 269 | // passing to C functions. |
| 270 | func (v *Value) Ptr() unsafe.Pointer { |
| 271 | return unsafe.Pointer(v.value) |
| 272 | } |
| 273 | |
| 274 | // Destroy removes all active references to the internal PHP value and frees |
| 275 | // any resources used. |
no outgoing calls