本文整理汇总了PHP中zipfile::add_sub_dir方法的典型用法代码示例。如果您正苦于以下问题:PHP zipfile::add_sub_dir方法的具体用法?PHP zipfile::add_sub_dir怎么用?PHP zipfile::add_sub_dir使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类zipfile
的用法示例。
在下文中一共展示了zipfile::add_sub_dir方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: zipfile
$new_root_node = $val->replace_node($new_node);
} else {
$last = $p->next_sibling();
$prev = $p->previous_sibling();
$father = $p->parent_node();
for ($i = 0; $i < count($dati); $i++) {
$tmp_root[$i] = $dom->create_element("text:p");
$tmp_root[$i]->set_attribute("text:style-name", $p_value);
$tmp = $dom->create_text_node(utf8_encode(html_entity_decode($dati[$i])));
$tmp_root[$i]->append_child($tmp);
if (!$last) {
$father->append_child($tmp_root[$i]);
} else {
$father->insert_before($tmp_root[$i], $last);
}
}
$p->unlink_node();
$val->unlink_node();
}
}
// Scrivo il file
$dom->dump_file(getcwd() . "/{$dir}/content.xml", false, true);
//visita_XML($root,0);
//Comprimo il file
$zipfile = new zipfile();
$zipfile->add_sub_dir("./" . $dir, "./" . $dir);
$zipfile->list_file("./" . $dir, "./" . $dir);
$fd = fopen($dir_save . "/" . $nomefile, "wb");
$out = fwrite($fd, $zipfile->file());
fclose($fd);
rmdirr($dir);