Dutch PHP Conference 2025 - Call For Papers

FFI::scope

(PHP 7 >= 7.4.0, PHP 8)

FFI::scopeInstantiates an FFI object with C declarations parsed during preloading

Опис

public static FFI::scope(string $name): FFI

Instantiates an FFI object with C declarations parsed during preloading.

The FFI::scope() method is safe to call multiple times for the same scope. Multiple references to the same scope may be loaded at the same time.

Параметри

name

The scope name defined by a special FFI_SCOPE define.

Значення, що повертаються

Returns the freshly created FFI object.

Прогляньте також

  • FFI::load() - Loads C declarations from a C header file

add a note

User Contributed Notes 1 note

up
0
mh at hanft dot de
10 months ago
I have found out that FFI::scope only works with Apache when you select Apache's threading model "prefork". Using any other threading model results in "scope not found" (and you have to use FFI::load instead because preloading seems not to be possible in this case).
To Top