Subversion Repositories php-qbpwcf

Rev

Rev 100 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 100 Rev 226
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
/*
3
/*
4
 
4
 
5
        QBPWCF, Quick Build PHP website Component base on Fedora Linux.
5
        QBPWCF, Quick Build PHP website Component base on Fedora Linux.
6
    Copyright (C) 2015~2024 Min-Jhin,Chen
6
    Copyright (C) 2014~2025 MIN ZHI, CHEN
7
 
7
 
8
    This file is part of QBPWCF.
8
    This file is part of QBPWCF.
9
 
9
 
10
    QBPWCF is free software: you can redistribute it and/or modify
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
11
    it under the terms of the GNU General Public License as published by
Line 87... Line 87...
87
$runList=autoService::runList($conf);
87
$runList=autoService::runList($conf);
88
unset($conf);
88
unset($conf);
89
 
89
 
90
#如果執行失敗
90
#如果執行失敗
91
if($runList["status"]=="false"){
91
if($runList["status"]=="false"){
92
	
92
 
93
	#印出結果
93
	#印出結果
94
	var_dump($runList);
94
	var_dump($runList);
95
	
95
 
96
	#結束執行回傳1
96
	#結束執行回傳1
97
	exit(1);
97
	exit(1);
98
	
98
 
99
	}#if end
99
	}#if end
100
 
100
 
101
#debug
101
#debug
102
var_dump($runList);
102
var_dump($runList);
103
 
103