|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2021-09-16 21:22 UTC] cmb@php.net
 
-Package: ffi
+Package: FFI
  [2021-12-01 17:53 UTC] cmb@php.net
 
-PHP Version: 7.4.0alpha2
+PHP Version: Next Minor Version
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 16:00:01 2025 UTC | 
Description: ------------ When some functions/variables are imported into FFI object, it would be nice to provide this information via declared properties/methods information. Test script: --------------- <?php // create FFI object, loading libc and exporting function printf() $ffi = FFI::cdef(" int printf(const char *format, ...); int errno;", "libc.so.6"); // Would be nice to have report about imported properties and methods, also in introspection var_dump($ffi, get_object_vars($ffi), get_class_methods($ffi)); Expected result: ---------------- Information about existing properties and existing methods. Maybe even with ability to reflect them via Reflection, eg. extract a closure instance. Actual result: -------------- There is no information about imported variables and functions.