mirror of
https://github.com/php/php-src.git
synced 2025-01-09 20:44:33 +08: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 {}
|