mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
13 lines
213 B
PHP
13 lines
213 B
PHP
--TEST--
|
|
FFI 001: Check if FFI is loaded
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--INI--
|
|
ffi.enable=1
|
|
--FILE--
|
|
<?php
|
|
echo 'The extension "FFI" is available';
|
|
?>
|
|
--EXPECT--
|
|
The extension "FFI" is available
|