From professional translators, enterprises, web pages and freely available translation repositories.
例 3writting data to a compressed file
stream_context_create
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
deflate圧縮アルゴリズムの詳細については、ドキュメント "deflate compressed data format specification version 1.3" (rfc 1951)を参照下さい。
see also gzinflate(), gzcompress(), gzuncompress(), gzencode().
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting
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);?
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting