(p unsafe.Pointer)
| 469 | } |
| 470 | |
| 471 | func zendHashDestroy(p unsafe.Pointer) { |
| 472 | ht := (*C.zend_array)(p) |
| 473 | C.zend_hash_destroy(ht) |
| 474 | } |
| 475 | |
| 476 | // EXPERIMENTAL: CallPHPCallable executes a PHP callable with the given parameters. |
| 477 | // Returns the result of the callable as a Go interface{}, or nil if the call failed. |
no outgoing calls