mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
16 lines
385 B
PHP
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 {}
|