- PHP 手册
- 函数参考
- XML 操作
- XML 解析器
- XML 解析器函数
xml_get_current_column_number
(PHP 4, PHP 5, PHP 7, PHP 8)
xml_get_current_column_number — 获取 XML 解析器的当前列号
说明
xml_get_current_column_number(resource$parser
): int
获得指定 XML 解析器当前的列号。
参数
-
parser
-
一个指向要获取列号的 XML 解析器的指针。
返回值
如果 parser
参数没有指向一个合法的解析器,该函数将返回 false
,否则将返回指定解析器所在行(由函数 xml_get_current_line_number() 给定)的当前列号。
参见
- xml_get_current_byte_index() - 获取 XML 解析器的当前字节索引
- xml_get_current_line_index()
User Contributed Notes 2 notes
up down -3 shaun at 5810 dot com ¶18 years ago
Column numbers apparently start at 0. So you may want to add 1.
up
down
-4
javajohn at gulfbridge.net ¶19 years ago
"Column number" refers to the current character position within the current line of the XML document.
add a note
官方地址:https://www.php.net/manual/en/function.xml-get-current-column-number.php