1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/opcache/opcache.stub.php
Christoph M. Becker 0ab4fca8e3 Add ext\opcache stubs
2019-08-26 16:05:01 +02:00

16 lines
385 B
PHP

<?php
function opcache_reset(): bool {}
/** @return array|false */
function opcache_get_status(bool $fetch_scripts = true) {}
function opcache_compile_file(string $file): bool {}
function opcache_invalidate(string $script, bool $force = false): bool {}
/** @return array|false */
function opcache_get_configuration() {}
function opcache_is_script_cached(string $script): bool {}