Php/docs/ffi.cdef

提供:Dev Guides
< Php
2020年12月14日 (月) 09:44時点におけるNotes (トーク | 投稿記録)による版 (autoload)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

FFI::cdef

(PHP 7 >= 7.4.0)

FFI::cdefCreates a new FFI object


説明

public static FFI::cdef ([ string $code = "" [, string $lib ]] ) : FFI

Creates a new FFI object.


パラメータ

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.

注意:

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.

注意:

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.


返り値

Returns the freshly created FFI object.