Results 1 to 2 of 2

Thread: การ zip folder ด้วย php

  1. #1
    Jedi Global Moderator Gen0TypE's Avatar
    Join Date
    Jan 2008
    Location
    Khonkaen
    Posts
    312


    Q: จะ zip folder ไปทำไม?
    A: อ้าว เวลาจะโหลด source code มา backup จะได้โหลดทีเดียวไง ไม่ต้องโหลดเป็นร้อยไฟล์

    Q: ก็ใช้ exec ของ php ไปสิ
    A: เกิดอยู่บน host ฟรี แล้วเค้า disable function นี้ไว้ล่ะ

    เออ นั่นสิ งั้นมาดูกันดีกว่าว่าทำไง แหะๆ

    มีข้อแม้ว่า server ต้องติดตั้ง ZipArchive extensions ก่อนนะ

    [hide=15][code]
    <?php
    // GRD ZIP ARCHIVER
    // by Piotr GRD
    // http://grd.go.pl/
    // grd@gazeta.pl
    // created 2008-05-05
    // free to use and modify as long as you keep info above

    // requirements: php zip extensions with ZipArchive class



    // SETTINGS
    // directory you want to compress with everything inside
    // . - for root
    // folder - for some folder
    // folder/subfolder - for some subfolder
    // do not add ending slash
    $directory = &#39;folder&#39;;

    // the name of your zip archive to be created
    $zipfile = &#39;myziparchive.zip&#39;;



    // DO NOT TOUCH BELOW IF YOU DONT KNOW WHAT IT IS
    // all the process below

    $filenames = array();

    // function that browse the directory and all subdirectories inside

    function browse($dir) {
    global $filenames;

  2. #2
    Junior Member
    Join Date
    Apr 2009
    Posts
    0


    8iy[

    กำลังศึกษาอยู่ อยากได้ การทำ zip ด้วย php ครับ

    กำลังศึกษาอยู่ อยากได้ การทำ zip ด้วย php ครับ

Similar Threads

  1. วิธีล็อก Folder ด้วย .bat
    By nueng000 in forum ทิปหรือเคล็ดลับการคอมพิวเตอร์ต่างๆ
    Replies: 7
    Last Post: 08-05-2010, 09:23 AM
  2. Replies: 1
    Last Post: 28-09-2009, 08:19 PM
  3. Lock your folder with Microsoft Private Folder
    By newsbot in forum World Hacking/Security News
    Replies: 0
    Last Post: 11-12-2007, 12:59 AM
  4. การทำพื้นหลังให้ Folder
    By jupingchun in forum ทิปหรือเคล็ดลับการคอมพิวเตอร์ต่างๆ
    Replies: 0
    Last Post: 06-11-2007, 04:28 AM
  5. Replies: 0
    Last Post: 30-10-2006, 11:40 AM

Members who have read this thread : 0

Actions : (View-Readers)

There are no names to display.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •