downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

domxml_xslt_stylesheet> <domxml_xslt_stylesheet_doc
[edit] Last updated: Fri, 24 Jun 2011

view this page in

domxml_xslt_stylesheet_file

(PHP 4 >= 4.2.0)

domxml_xslt_stylesheet_file ساخت شی DomXsltStylesheet از سند XSL در فایل

Description

DomXsltStylesheet domxml_xslt_stylesheet_file ( string $xsl_file )

ساخت شی DomXsltStylesheet از فایل داده شده XSL.

Parameters

xsl_file

مسیر سند XSL document به عنوان رشته.

Return Values

بازگرداندن نمونه جدید DomXsltStylesheet.

مهاجرت به PHP 5

فراخوانی XSLTProcessor::importStylesheet() به همراه DOMDocument::load($xsl_file) به عنوان پارامتر.

See Also



add a note add a note User Contributed Notes domxml_xslt_stylesheet_file - [1 notes]
up
0
info at sgonda dot de
9 years ago
Here's is a example for use:

<?php

$xmldoc
= domxml_open_file("dom.xml");
$xsldoc  = domxml_xslt_stylesheet_file ("dom.xsl");
$result   = $xsldoc->process($xmldoc);
 print
$result->dump_mem();

?>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites