Subversion Repositories qbpwcf-lib(archive)

Rev

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

Rev Author Line No. Line
434 liveuser 1
<?php
2
 
3
#使用命名空間qbpwcf
4
namespace qbpwcf;
5
 
6
#匯入套件
7
require_once("qbpwcf/allInOne.php");
8
 
9
#函式說明:
10
#將 freeplane 軟體支持的 mm 格式檔案跨平台.
11
#回傳結果:
12
#$result["status"],執行是否正常,"true"代表正常,"false"代表不正常.
13
#$result["error"],錯誤訊息.
14
#$result["function"],當前執行的函式名稱.
15
#$result["content"],調整過後的檔案內內容字串.
16
#必填參數:
17
#$conf["mmFile"],字串,mm檔案的位置與名稱.
18
$conf["mmFile"]="assets of cmd/ERPv2-4.mm";
19
#可省略參數:
20
#$conf["imgFolder"],字串,圖片存放的相對路徑字串,預設為"Pictures".
21
#$conf["imgFolder"]="Pictures";
22
#參考資料:
23
#無.
24
#備註:
25
#無.
26
$msPortable=cmd::msPortable($conf);
27
unset($conf);
28
 
29
#debug
30
var_dump($msPortable);
31
 
32
?>