* the severity of the error (one of the following constants:
* LIBXML_ERR_WARNING,
* LIBXML_ERR_ERROR or
* LIBXML_ERR_FATAL)
*
* The error's code. *
* @var int */ public int $code; /** ** The column where the error occurred. *
*Note: *
* This property isn't entirely implemented in libxml and therefore * 0 is often returned. *
* @var int */ public int $column; /** ** The error message, if any. *
* @var string */ public string $message; /** *The filename, or empty if the XML was loaded from a string.
* @var string */ public string $file; /** ** The line where the error occurred. *
* @var int */ public int $line; } /** * Set the streams context for the next libxml document load or write * @link https://php.net/manual/en/function.libxml-set-streams-context.php * @param resource $context* The stream context resource (created with * stream_context_create) *
* @return void No value is returned. */ function libxml_set_streams_context($context): void { } /** * Disable libxml errors and allow user to fetch error information as needed * @link https://php.net/manual/en/function.libxml-use-internal-errors.php * @param bool|null $use_errors* Enable (TRUE) user error handling or disable (FALSE) user error handling. Disabling will also clear any existing libxml errors. *
* @return bool This function returns the previous value of * use_errors. */ function libxml_use_internal_errors(#[PhpStormStubsElementAvailable(from: '8.0')] ?bool $use_errors = null): bool { } /** * Retrieve last error from libxml * @link https://php.net/manual/en/function.libxml-get-last-error.php * @return LibXMLError|false a LibXMLError object if there is any error in the * buffer, FALSE otherwise. */ #[Pure(true)] function libxml_get_last_error(): LibXMLError|false { } /** * Clear libxml error buffer * @link https://php.net/manual/en/function.libxml-clear-errors.php * @return void No value is returned. */ function libxml_clear_errors(): void { } /** * Retrieve array of errors * @link https://php.net/manual/en/function.libxml-get-errors.php * @return LibXMLError[] an array with LibXMLError objects if there are any * errors in the buffer, or an empty array otherwise. */ #[Pure(true)] function libxml_get_errors(): array { } /** * Disable the ability to load external entities * @link https://php.net/manual/en/function.libxml-disable-entity-loader.php * @param bool $disable [optional]* Disable (TRUE) or enable (FALSE) libxml extensions (such as * , * and ) to load external entities. *
* @return bool the previous value. * @since 5.2.11 */ #[Deprecated(since: "8.0")] function libxml_disable_entity_loader(bool $disable = true): bool { } /** * Changes the default external entity loader * @link https://php.net/manual/en/function.libxml-set-external-entity-loader.php * @param callable|null $resolver_function* A callable that takes three arguments. Two strings, a public id * and system id, and a context (an array with four keys) as the third argument. * This callback should return a resource, a string from which a resource can be * opened, or NULL. *
* @return bool * @since 5.4 */ function libxml_set_external_entity_loader(?callable $resolver_function): bool { } /** * Returns the currently installed external entity loader, i.e. the value which was passed to * libxml_set_external_entity_loader() or null if no loader was installed and the default entity loader will be used. * This allows libraries to save and restore the loader, controlling entity expansion without interfering with the rest * of the application. * * @return callable|null * @since 8.2 */ function libxml_get_external_entity_loader(): ?callable { } __halt_compiler();----SIGNATURE:----QQ+bSZOr4zOJGuDdotChDynwl2cnJ9FQz7wJlLc1q+/rrOlEdqXmI7GBrdt5e/O21MXg0U1cHlp1FmY4y35ZD6WW5ZpPne6misdFD9e8wlryUJH8wg8qkrJEVsQ7P4Dtcqn5Flbc3MlnOBnQ6x/OvMxunCnWVSoDMY7JtBrag8eIwU3onhWoR3KQZ6ZG1dytG/tziO/q356DibqF5jV3VcFB0awB9SeEc+SqQcmnaRTsCrw27lMZaR0ID2/K6Ee1mSMlPINamqE3Ea6yB5ORxQjXP0xJQFL0a0CAnafRf8q6W719FkpYPaq4aU0HqGMrUsfBs2Whg0ikOU8w5hKc4R1ySZlzPo1oLNZIWBzBGkR4hXcimA1XZtaVmsPtZ1D7ZTeeceLXAHQ8qx1qxpSxu2pUNq9oc55MjVdFY+D4gaqsP0wb5PUqfg3N6VoH5oikbDAuebH3kIsxk4ybBOHa6i+WbNnPP7cNyKolvEoKfadrMv+qNdmYGqM2L0ykijhuoDFqDX7XJMuFapzLMQXe8DBaWaBakNDAYL7uexfTBKFgXx734ZnVaWL5NLUVr7fF+stEHOQa/PCzzUe2yRMXlNFHAW9kcymPQSXe4eHcYmCPtHIHg4BR4q0PYBFP7DQLAGtmq+JIk7qOmsGAaKIoWmC/aHe7ONr4IkdFcRQgQQk=----ATTACHMENT:----ODgwMjk4Mzc4MTM2OTQzOCA4NDQwNzg1MzA2MzE4NzQyIDg5NjQ5NTY4MDk0MzM3ODA=