来自专业的译者、企业、网页和免费的翻译库。
例 3writting data to a compressed file
stream_context_create
最后更新: 2011-10-24
使用频率: 1
质量:
deflate圧縮アルゴリズムの詳細については、ドキュメント "deflate compressed data format specification version 1.3" (rfc 1951)を参照下さい。
see also gzinflate(), gzcompress(), gzuncompress(), gzencode().
最后更新: 2011-10-24
使用频率: 1
质量:
警告:包含不可见的HTML格式
creates an xml document from the dom representation. this function usually is called after building a new dom document from scratch as in the example below. the format specifies whether the output should be neatly formatted, or not. the first parameter specifies the name of the filename and the second parameter, whether it should be compressed or not.
?php $doc = domxml_new_doc( "1.0"); $root = $doc - create_element("html"); $root = $doc - append_child($root); $head = $doc - create_element("head"); $head = $root - append_child($head); $title = $doc - create_element("title"); $title = $head - append_child($title); $text = $doc - create_text_node("this is the title"); $text = $title - append_child($text); $doc - dump_file(" / tmp / test.xml", false, true);?
最后更新: 2011-10-24
使用频率: 1
质量:
警告:包含不可见的HTML格式