>[danger] 前言
[ThinkPHP技術群: 828567087](https://shang.qq.com/wpa/qunwpa?idkey=6fa96f511b60b30b25fbd1b53872a3ff2d944192a8d19cd24b633a9dc93cfa6c)
本文檔是工作中開發微擎經驗總結,結合公司項目情況開發了一套適用于微擎、適用于我們公司的微擎小程序TP框架
>[danger] 資源網站
微擎官方開發文檔: [https://wiki.w7.cc/chapter/35?id=370](https://wiki.w7.cc/chapter/35?id=370)
微擎開發文檔:[http://www.hmoore.net/donknap/we7/136556](http://www.hmoore.net/donknap/we7/136556)
寶塔使用手冊: [http://www.hmoore.net/chudong/bt2017/424204](http://www.hmoore.net/chudong/bt2017/424204)
小程序官方開發文檔:[https://developers.weixin.qq.com/miniprogram/dev/framework](https://developers.weixin.qq.com/miniprogram/dev/framework)
>[danger] 顯示錯誤信息
```
ini_set('display_errors','On');
error_reporting(E_ALL);
ini_set('error_log', __DIR__ . '/error_log.txt'); //將出錯信息輸出到一個文本文件
```