전문 번역가, 번역 회사, 웹 페이지 및 자유롭게 사용할 수 있는 번역 저장소 등을 활용합니다.
例 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 형식이 포함되어 있습니다