Subversion Repositories qbpwcf-lib(archive)

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
462 liveuser 1
<?php
2
 
3
/*
4
 
5
        QBPWCF, Quick Build PHP website Component base on Fedora Linux.
6
    Copyright (C) 2015~2023 Min-Jhin,Chen
7
 
8
    This file is part of QBPWCF.
9
 
10
    QBPWCF is free software: you can redistribute it and/or modify
11
    it under the terms of the GNU General Public License as published by
12
    the Free Software Foundation, either version 3 of the License, or
13
    (at your option) any later version.
14
 
15
    QBPWCF is distributed in the hope that it will be useful,
16
    but WITHOUT ANY WARRANTY; without even the implied warranty of
17
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
    GNU General Public License for more details.
19
 
20
    You should have received a copy of the GNU General Public License
21
    along with QBPWCF.  If not, see <http://www.gnu.org/licenses/>.
22
 
23
*/
24
 
25
#使用命名空間qbpwcf
26
namespace qbpwcf;
27
 
28
#匯入套件
29
require_once("qbpwcf/allInOne.php");
30
 
31
#函式說明:
32
#將資料夾打包成.zst檔案
33
#回傳的結果:
34
#$result["status"],執行是否正常,"true"代表正常,"false"代表不正常.
35
#$result["error"],錯誤訊息.
36
#$result["function"],當前執行的函式名稱.
37
#$result["storePlace"],檔案輸出後的位置與名稱.
38
#必填參數:
39
#$conf["commentsArray"],字串陣列,提示輸入的文字描述,$conf["commentsArray"][$i]代表第($+1)行的描述.
40
$conf["commentsArray"]=array("正透過zstd壓縮");
41
#$conf["target"],字串,要打包的檔案.
42
$conf["target"]="ERPv2-2.minder";
43
#$conf["fileArgu"],字串,php變數__FILE__的內容,亦即該檔案在檔案系統的絕對路徑.
44
$conf["fileArgu"]=__FILE__;
45
#可省略參數:
46
#$conf["newLineBreak"],字串,是否$conf["commentsArray"]的每個元素後面都要斷行,"false"代表不要,預設為"true"要斷行.
47
#$conf["newLineBreak"]="false";
48
#$conf["path"],字串,要打包的檔案的路徑,預設為當前路徑.
49
$conf["path"]="./assets of cmd/";
50
#$conf["delAfterSuc"],字串,是否壓縮後將原始檔案移除,預設為"false"代表不要;反之為"true"代表要.
51
#$conf["delAfterSuc"]="false";
52
#$conf["overwrite"],字串,預設為"false",代表不覆蓋已經存在的壓縮檔案;"true"代表要覆蓋已經存在的壓縮檔案.
53
$conf["overwrite"]="true";
54
#參考資料:
55
#無.
56
#備註:
57
#無.
58
$makeZstFile=cmd::makeZstFile($conf);
59
unset($conf);
60
 
61
#debug
62
var_dump($makeZstFile);
63
 
64
?>