1--TEST-- 2Test xml_set_start_namespace_decl_handler function: basic 3--EXTENSIONS-- 4xml 5--SKIPIF-- 6<?php 7require __DIR__ . '/libxml_expat_skipif.inc'; 8skipif(want_expat: false); 9?> 10--FILE-- 11<?php 12// Note: namespace end handlers are only supported on expat 13require __DIR__ . '/xml_set_start_namespace_decl_handler_basic.inc'; 14?> 15--EXPECT-- 16bool(true) 17bool(true) 18Namespace_Start_Handler called 19...Prefix: aw1 20...Uri: http://www.somewhere.com/namespace1 21Namespace_Start_Handler called 22...Prefix: aw2 23...Uri: file:/DTD/somewhere.dtd 24Done 25