profile07.phpt

来自「PHP v6.0 For Linux 运行环境:Win9X/ WinME/ Wi」· PHPT 代码 · 共 24 行

PHPT
24
字号
--TEST--SimpleXML [profile]: Accessing an aliased namespaced attribute--SKIPIF--<?php if (!extension_loaded("simplexml")) print "skip"; ?>--FILE--<?phperror_reporting(E_ALL & ~E_NOTICE);$root = simplexml_load_string(b'<?xml version="1.0"?><root xmlns:reserved="reserved-ns"> <child reserved:attribute="Sample" /></root>');$rsattr = $root->child->attributes('reserved');$myattr = $root->child->attributes('reserved-ns');echo $rsattr['attribute'];echo $myattr['attribute'];echo "\n---Done---\n";?>--EXPECT--Sample---Done--- 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?