xslt_setopt.phpt
来自「php-4.4.7学习linux时下载的源代码」· PHPT 代码 · 共 41 行
PHPT
41 行
--TEST--xslt_setopt function and public entities--SKIPIF--<?phpinclude("skipif.inc");if(!function_exists('xslt_setopt')) { die("skip function xslt_setopt() is not available\n");}?>--INI--magic_quotes_runtime=0--FILE--<?phperror_reporting(E_ALL);$xmlfile = dirname(__FILE__).'/public.xml';$xslfile = dirname(__FILE__).'/args.xsl';$xh = xslt_create();// Tell Sablotron to process public entitiesxslt_setopt($xh, XSLT_SABOPT_PARSE_PUBLIC_ENTITIES);$result = xslt_process($xh, $xmlfile, $xslfile);print "$result\n";$xslstring = implode('', file($xslfile));$xslstring = str_replace('method="text"', 'method="html"', $xslstring);$xslstring = str_replace('<xsl:value-of select="." />', '<html><head><title>foo</title></head><body><p><xsl:value-of select="." /></p></body></html>', $xslstring);// DEBUG: print $xslstring;xslt_setopt($xh, XSLT_SABOPT_PARSE_PUBLIC_ENTITIES | XSLT_SABOPT_DISABLE_ADDING_META);var_dump(xslt_process($xh, $xmlfile, 'arg:/_xsl', NULL, array('/_xsl' => $xslstring)));xslt_setopt($xh, XSLT_SABOPT_PARSE_PUBLIC_ENTITIES);var_dump(xslt_process($xh, $xmlfile, 'arg:/_xsl', NULL, array('/_xsl' => $xslstring)));// DEBUG: print "$result_meta\n";xslt_free($xh);?>--EXPECT--PHP QA
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?