* the severity of the error (one of the following constants: * LIBXML_ERR_WARNING, * LIBXML_ERR_ERROR or * LIBXML_ERR_FATAL) *

* @var int */ public int $level; /** *

* 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:----wGVLofIdj3whOnHfOK5XmxyviRVIfpg7o84GbwvFhM3itJMNc7NFt5M9q76FrWcoZUe0xdsCSiorWdUqVReV5AVJRGfCcZY/DHg0nhXGdQOUlX+H9biz5yCcwDVOWCB2MZrl/o+4FyO65uc7FEoqfqwWD/7/0R+UfzTY5DNzSoY2FPR1V4dmU5peUkM2OjFdeY17vFaIgZmqB+JHD20sVC3WDJTVIx8PF9dSMpcRv0E2YXBUXE33AUpCkqdcGoVnENmOjPaP0r8/gpX+0OrChBVncvqaNVtIzCuqaFTB0q9IjHOtmpSJmFQKXsPuk9aVzCJeNCm8K38NjDcXIfYHhOnwjaQ29YgZl7KDrXyBKRRr82OoZxR35sHTclmnNflSBMXsM05nDF2BB4zER/PcchpzOTq0DULmAgemD9YtqeOpTmJ6HkqMo96UXkzXrK7bR6komKolmBhsZFNeO2xL02VK4dvg9fbSXGrf8EO46Knnn4MBj/KCNJVUc9uLazGThew7s6F0yUOPRxs5WKfWRY1UzIv5Nu6Dsm8+ZzJLeUMS+KXval0P+R+Nuk6S8zXDKyPYcDhN6v2EAYdayiklPz5G5fMStUJnS4Ra+C1PKNRUoycKbihXj5IU4PkvnWzYK+dnBFvHPfQy5Mq6WuM2cSHCFNICw1EIZAbMuEfdNGY=----ATTACHMENT:----NDc0OTI3ODg4Njc5MjQ1OSA4NjY1NjMwMDc1OTEwOTE3IDMwNTQzNTUzMDY2MDQxOTA=