1--TEST-- 2phpt EXTENSIONS directive with static module 3--SKIPIF-- 4<?php 5$php = getenv('TEST_PHP_EXECUTABLE'); 6if (false === stripos(`$php -n -m`, 'spl')) { 7 die('skip spl is NOT built static'); 8} 9--EXTENSIONS-- 10SPL 11--FILE-- 12<?php 13var_dump(extension_loaded('spl')); 14--EXPECT-- 15bool(true) 16