mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
17 lines
472 B
PHP
17 lines
472 B
PHP
<?php
|
|
|
|
/** @param resource $context */
|
|
function libxml_set_streams_context($context): void {}
|
|
|
|
function libxml_use_internal_errors(bool $use_errors = UNKNOWN): bool {}
|
|
|
|
/** @return LibXMLError|false */
|
|
function libxml_get_last_error() {}
|
|
|
|
function libxml_get_errors(): array {}
|
|
|
|
function libxml_clear_errors(): void {}
|
|
|
|
function libxml_disable_entity_loader(bool $disable = true): bool {}
|
|
|
|
function libxml_set_external_entity_loader(?callable $resolver_function): bool {}
|