FFI::cdef

(PHP 7 >= 7.4.0)

FFI::cdefCreates a new FFI object

Descrierea

public static FFI::cdef ( string $code = "" , string|null $lib = null ) : FFI

Creates a new FFI object.

Parametri

code

A string containing a sequence of declarations in regular C language (types, structures, functions, variables, etc). Actually, this string may be copy-pasted from C header files.

Notă:

C preprocessor directives are not supported, i.e. #include, #define and CPP macros do not work.

lib

The name of a shared library file, to be loaded and linked with the definitions.

Notă:

If lib is omitted, platforms supporting RTLD_DEFAULT attempt to lookup symbols declared in code in the normal global scope. Other systems will fail to resolve these symbols.

Valorile întoarse

Returns the freshly created FFI object.

Istoricul schimbărilor

Versiune Descriere
8.0.0 lib is nullable now.