* 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:----BA0GageAi9MsPznnwVYgfhciCjDJ86/sN1EUmj5W9Fp04Ve6e5XFcMAchOzdeS8m07slohJho5rcYL1u7lF8o68JVk4rQpgApVHgnEaYBznzohdmpCUjyJY3Yri64klOmdwQ0SciL8t9pOuK5FJCYSbtWdNLMZWI39B+BgY9Xx+7tmD6OCIaTxZjjgf+T99q2XbLBeolbcLehYBXCg+tHQboe/PpazQPTxy3rFWBzueEMfyNDiemtciaF3ueUlUHTc7pbdlext2VvshKsqaJfm9fQ2bAbgjy0hLxeYDow5Tch9wSx1uRGbwiWU50hgzaf+wM4SvIwU+ARz4Dn7aETrGegqvZLH7ezZoNtQ3Qzn2WXycCAadj4U9vatrNSMsnztbdPr7XL6/TG+CkOtumU5Ux4A5n1ulZkAZVgT3cRgcNLxVifhbAMkSCsoNpg9v69zN1CFTrVOXEbxO6jvfq19BODqWGpNkLnrqgLN1sR5jQEqeUmzvXA0mlMdOmgHsirGH+8GO3Wrp41PUB1oJYoXpoqqgDKFVDci6oGpAqV3Wn8IdvzDuqunxp5sNJ7QOF5JAtBWId1INz066+3WyvP8moILyZLR/wpgogNJPCW9m0Iu7WspEsRNSbRxgi73RmCzj6OmtUnqybHH5jQJJZYnqJQRRY8JtCYibKL/zryhE=----ATTACHMENT:----MjMyMDk1OTA2NDY5OTgwMSA1ODQ2NzQ3MTAyODQwMTYwIDY5Mjk1MTYyMTI4NzQ3Njg=