forked from yangweijie/SublimeThinkPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
添加了查询mysql数据库功能, 删除了php生成手册功能 修复以前查询字段时密码为空不能查询的bug 修复以前调用php命令引号传'命令行无法执行的bug
- Loading branch information
1 parent
0b97011
commit 5ef3cf3
Showing
11 changed files
with
507 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,28 @@ | ||
{ | ||
"manual_dir":"manual",//手册保存目录 | ||
"api_url":"http://www.thinkphp.cn/api"//手册api地址 | ||
"manual_dir":"manual", | ||
"api_url":"http://www.thinkphp.cn/api", | ||
"current_database" :"" , | ||
"database" : { | ||
"0":{ | ||
"list_title":"add_database" | ||
}, | ||
"1":{ | ||
"list_title":"fujian", | ||
"DB_HOST":"192.168.1.200", | ||
"DB_USER": "fujian", | ||
"DB_PWD": "fujian", | ||
"DB_NAME": "fujian", | ||
"DB_PREFIX": "sister_", | ||
"DB_PORT": "3306" | ||
}, | ||
"2":{ | ||
"list_title":"local", | ||
"DB_HOST": "localhost", | ||
"DB_USER": "root", | ||
"DB_PWD": "", | ||
"DB_NAME": "mysql", | ||
"DB_PREFIX": "" | ||
} | ||
|
||
} | ||
} |
Oops, something went wrong.