17c04-2.php
来自「介绍PHP5的给类型函数应用」· PHP 代码 · 共 20 行
PHP
20 行
<?php// Using the DOM extension, load the XML file into memory:$dom = new DOMDocument();$dom->load('17c00-1.xml');//$dom->load('contacts.xml');// Now also load the XSL file as well:$xsl = new DOMDocument();$xsl->load('17c04-1.xsl');//$xsl->load('contacts.xsl');// Create a new XSLT Processor$proc = new XSLTProcessor;// Import the XSL styles into this processor$proc->importStyleSheet($xsl);// Now transform the XML file and echo it to the screen!echo $proc->transformToXML($dom);?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?