1 Star 0 Fork 0

api-go/php-src

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
xml.stub.php 1.87 KB
一键复制 编辑 原始数据 按行查看 历史
Máté Kocsis 提交于 2019-11-17 01:40 +08:00 . Add union return types with one class
<?php
function xml_parser_create(string $encoding = UNKNOWN): XmlParser|false {}
function xml_parser_create_ns(string $encoding = UNKNOWN, string $sep = ':'): XmlParser|false {}
function xml_set_object(XmlParser $parser, object $obj): bool {}
/**
* @param callable $shdl
* @param callable $ehdl
*/
function xml_set_element_handler(XmlParser $parser, $shdl, $ehdl): bool {}
/** @param callable $hdl */
function xml_set_character_data_handler(XmlParser $parser, $hdl): bool {}
/** @param callable $hdl */
function xml_set_processing_instruction_handler(XmlParser $parser, $hdl): bool {}
/** @param callable $hdl */
function xml_set_default_handler(XmlParser $parser, $hdl): bool {}
/** @param callable $hdl */
function xml_set_unparsed_entity_decl_handler(XmlParser $parser, $hdl): bool {}
/** @param callable $hdl */
function xml_set_notation_decl_handler(XmlParser $parser, $hdl): bool {}
/** @param callable $hdl */
function xml_set_external_entity_ref_handler(XmlParser $parser, $hdl): bool {}
/** @param callable $hdl */
function xml_set_start_namespace_decl_handler(XmlParser $parser, $hdl): bool {}
/** @param callable $hdl */
function xml_set_end_namespace_decl_handler(XmlParser $parser, $hdl): bool {}
function xml_parse(XmlParser $parser, string $data, bool $isfinal = false): int {}
function xml_parse_into_struct(XmlParser $parser, string $data, &$values, &$index = UNKNOWN): int {}
function xml_get_error_code(XmlParser $parser): int {}
function xml_error_string(int $code): ?string {}
function xml_get_current_line_number(XmlParser $parser): int {}
function xml_get_current_column_number(XmlParser $parser): int {}
function xml_get_current_byte_index(XmlParser $parser): int {}
function xml_parser_free(XmlParser $parser): bool {}
function xml_parser_set_option(XmlParser $parser, int $option, $value): bool {}
function xml_parser_get_option(XmlParser $parser, int $option) {}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/netscript/php-src.git
git@gitee.com:netscript/php-src.git
netscript
php-src
php-src
master

搜索帮助