Toggle main menu visibility
下載輕鬆架
套件下載
使用手冊
發問討論
網站地圖
:::
登入
登入
帳號
密碼
登入
:::
所有書籍
「用AI學PHP8」目錄
MarkDown
1-1 安裝PHP運作環境
1. 學好程式的幾個建議
1-1 安裝PHP運作環境
1-2 安裝 VSCode 開發工具
1-3 安裝 Composer
1-4 關於PHP8
1-5 上課範例及需求
1-6 研習時需要的學習心態
1-7 建立專案目錄
2. 開始動手做界面
2-1 請AI幫我們做前端界面
2-2 請AI幫我們做滑動圖輪播區
2-3 將首頁和滑動圖整併在一起
2-4 請AI製作文章發布界面
3. 精修完整界面樣板
3-1 安裝Smarty樣板引擎
3-2 建立前、後台樣板檔並套用之
3-3 將主樣板檔拆分成小樣板
3-3-1 美化頁首樣板檔 header.tpl
3-3-2 優化導覽列 nav.tpl
3-3-3 統一主內容樣式 main.tpl
3-3-4 微調一下側邊欄
3-3-5 修改頁尾
4. 讓表單開始有作用
4-1 傳入變數讓程式知道現在要做什麼
4-2 根據不同動作自動載入相對應樣板
4-3 修改編輯表單使之可以送出資料
4-4 製作共同頁首檔 header.php
5. 將資料存到資料庫
5-1 建立資料庫連線
5-2 用AI來產生表單儲存功能
5-2-1 接收表單的值
5-2-2 用PDO寫入資料庫
5-2-3 建立縮圖並產生json資料
5-2-4 檔案上傳與接收
5-3 完成整個新增流程
6. 製作顯示單一文章的功能
6-1 將資料庫取出的值帶入樣板
6-2 讓滑動圖可以真的運作
6-3 套用真實圖片到輪播圖中
7. 製作首頁列表功能
7-1 取得指定的新聞資料數
7-2 完成首頁輪播圖及新聞列表
7-3 製作文章摘要
7-4 加入文章分頁功能
7-5 完成側邊欄的近期新聞
8. 開始加入管理功能
8-1 讓系統記住是否為管理員
8-2 製作登入、登出功能
8-3 加入管理工具功能
8-4 製作編輯功能
8-5 初步完成更新功能
8-6 完成圖片管理
8-7 加入刪除功能
9. 完成各種小細節
9-1 完成點閱數功能
9-2 用影片替換輪播圖
9-3 加入搜尋功能
9-4 點擊學校可以列出該校文章
9-5 產生內嵌語法
1-3 安裝 Composer
用AI學PHP8 ======== ### 一、安裝前準備 1. 官網:
2. 開發工具,請使用自己慣用的文字編輯器即可,上課用Visual Studio Code 為主 3. 建議先安裝以下兩個軟體: - node.js
,讓功能更完整(可安裝 [20.16.0 LTS](https://nodejs.org/dist/v20.16.0/node-v20.16.0-x64.msi) 版本)。 - git
,VSCode的版本控制才會有作用(可安裝 **[64-bit Git for Windows Setup](https://github.com/git-for-windows/git/releases/download/v2.46.0.windows.1/Git-2.46.0-64-bit.exe)**)。 4. 做好編輯器設定 ```javascript { "editor.fontSize": 18, // - 'bounded' (當檢視區縮至最小並設定 'editor.wordWrapColumn' 時換行). "editor.wordWrap": "on", // 控制編輯器是否應自動設定貼上的內容格式。格式器必須可供使用,而且格式器應該能夠設定文件中一個範圍的格式。 "editor.formatOnPaste": true, // 使用滑鼠滾輪並按住 Ctrl 時,縮放編輯器的字型 "editor.mouseWheelZoom": true, // 在儲存時設定檔案格式。格式器必須處於可用狀態、檔案不得自動儲存,且編輯器不得關機。 "editor.formatOnSave": false, // 控制是否應在輸入時自動顯示建議 "editor.quickSuggestions": { "other": true, "comments": false, "strings": true }, "editor.minimap.enabled": false, "editor.tabCompletion": "on", "editor.linkedEditing": true, "editor.suggestSelection": "first", // 若啟用,則會在儲存檔案時,修剪檔案末新行尾的所有新行。 "files.trimFinalNewlines": true, // 若啟用,將在儲存檔案時修剪尾端空白。 "files.trimTrailingWhitespace": true, "files.associations": { "*.tpl": "html" }, "[php]": { "editor.formatOnSave": true, "editor.defaultFormatter": "kokororin.vscode-phpfmt" }, "emmet.triggerExpansionOnTab": true, "emmet.showSuggestionsAsSnippets": true, "git.ignoreMissingGitWarning": true, "git.enableSmartCommit": true, "git.autofetch": true, "git.confirmSync": false, } ``` ### 二、安裝常用套件: - `Auto Close Tag` : 讓標籤自動閉合的。 - `Auto Rename Tag` : 讓成對的標籤自動一起修改。 - `AutoFileName` : 讓編輯器自動完成圖片或檔案路徑。 - `Bootstrap 5 Quick Snippets` : 快速插入Bootstrap 5 語法片段。 - `Codeium: AI Coding Autocomplete and Chat for Python, Javascript, Typescript, Java, Go, and more`:AI助理 - `Chinese (Traditional) Language Pack for Visual Studio Code`:中文介面 - `Copy file name`:複製檔名 - `Git History`:檢視Git的完整紀錄 - `HTML CSS Support`:網頁的 id 及 class 自動補全,不用自己死記網頁中的 id 或 class ```javascript "css.styleSheets": [ "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" ], "css.enabledLanguages": [ "css", "scss", "tpl" ], ``` - `indent-rainbow`:以顏色標出縮排,更容易辨識與對齊 - `Material Icon Theme`:精美的檔案圖示(非必須) - `PHP Intelephense`:夠快速完成PHP程式碼及查找關聯、精確錯誤報告,請加入設定: ```javascript "intelephense.completion.fullyQualifyGlobalConstantsAndFunctions": true, "intelephense.environment.includePaths": [ "vendor" ], ``` - 在套件搜尋框輸入「@builtin php」 - 將「PHP Language Features」關閉,避免功能衝突 - `phpfmt - PHP formatter`:格式化PHP程式碼用,請加入設定(php.exe 的實際路徑請視實際情況修改) ```javascript // php executable path "phpfmt.php_bin": "C:/UniServerZ/core/php83/php.exe", // enable auto align of ST_EQUAL and T_DOUBLE_ARROW "phpfmt.enable_auto_align": true, // fixes visibiliy order for method in classes - PSR-2 4.2 "phpfmt.visibility_order": true, // convert multistatement blocks into multiline blocks "phpfmt.smart_linebreak_after_curly": true, ``` - `Prettier - Code formatter`:美化HTML、JavaScript、CSS...等格式器 - `Smarty Template Support`:Smarty樣板引擎支援 - `vscode-goto-documentation`:快速檔案搜尋 - 不過癮的話,這裡還有更多他人推薦的套件:
- 最後的完整設定檔: ```javascript { "editor.fontSize": 18, // - 'bounded' (當檢視區縮至最小並設定 'editor.wordWrapColumn' 時換行). "editor.wordWrap": "on", // 控制編輯器是否應自動設定貼上的內容格式。格式器必須可供使用,而且格式器應該能夠設定文件中一個範圍的格式。 "editor.formatOnPaste": true, // 使用滑鼠滾輪並按住 Ctrl 時,縮放編輯器的字型 "editor.mouseWheelZoom": true, // 在儲存時設定檔案格式。格式器必須處於可用狀態、檔案不得自動儲存,且編輯器不得關機。 "editor.formatOnSave": false, // 控制是否應在輸入時自動顯示建議 "editor.quickSuggestions": { "other": true, "comments": false, "strings": true }, "editor.minimap.enabled": false, "editor.tabCompletion": "on", "editor.linkedEditing": true, "editor.suggestSelection": "first", // 若啟用,則會在儲存檔案時,修剪檔案末新行尾的所有新行。 "files.trimFinalNewlines": true, // 若啟用,將在儲存檔案時修剪尾端空白。 "files.trimTrailingWhitespace": true, "files.associations": { "*.tpl": "html" }, "[php]": { "editor.formatOnSave": true, "editor.defaultFormatter": "kokororin.vscode-phpfmt" }, "emmet.triggerExpansionOnTab": true, "emmet.showSuggestionsAsSnippets": true, "git.ignoreMissingGitWarning": true, "git.enableSmartCommit": true, "git.autofetch": true, "git.confirmSync": false, "css.styleSheets": [ "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" ], "css.enabledLanguages": [ "css", "scss", "tpl" ], "workbench.iconTheme": "material-icon-theme", "intelephense.completion.fullyQualifyGlobalConstantsAndFunctions": true, "intelephense.environment.includePaths": [ "vendor" ], // php executable path "phpfmt.php_bin": "C:/UniServerZ/core/php83/php.exe", // enable auto align of ST_EQUAL and T_DOUBLE_ARROW "phpfmt.enable_auto_align": true, // fixes visibiliy order for method in classes - PSR-2 4.2 "phpfmt.visibility_order": true, // convert multistatement blocks into multiline blocks "phpfmt.smart_linebreak_after_curly": true, } ``` ### 三、常用快捷鍵 1.
Ctrl
+
N
:建立新檔 2.
Ctrl
+
C
:
複製
3.
Ctrl
+
V
:
貼上
4.
Ctrl
+
S
:
儲存
5.
Ctrl
+
F
:搜尋 6.
Ctrl
+
Shift
+
F
:跨檔搜尋 7.
Ctrl
+
H
:取代 8.
Ctrl
+
/
:
註解
9.
Shift
+
Alt
+
A
:
區域註解
10.
Ctrl
+
`
:
開終端機
11.
Ctrl
+
B
:關閉左側工具 12.
Ctrl
+
X
:刪除目前行 13.
Ctrl
+
G
:跳至某行 14.
Ctrl
+
end
:跳至檔案結尾 15.
Ctrl
+
Z
:回上個動作(復原) 16.
Ctrl
+
Y
:回下個動作(再做) 17.
shift
+
alt
+
F
:美化(格式化)語法 18.
shift
+
alt
+
滑鼠左鍵
:區塊標記 19. Emmet語法:
:::
書籍目錄
展開
|
闔起
快速登入
所有討論區
Tad Search 資料查詢
懶人框架討論區
實戰PHP7+MySQL
XOOPS輕鬆架快速上手
校園網站輕鬆架一般討論區
Booking Helper 預約助手
es_stud_sign 班級報名
es charge 學生收費管理
E-Stud import 學生名冊管理
es_after_school 課後照顧報名
es_exam 學生作業繳交
ES_panel 校務行政面板
es_timetable 課表
ES_youtube 本校影音
info_whats 網路設備記錄
jill booking 場地預約
jill_notice 臨時公告
jill query 簡易查詢
jill receipt 領據填報
kw club 社團報名
kw device 設備借用管理系統
ntpc_oprnid 新北市 OpenID 登入
TinyD嵌入內容模組
ugm contact us 聯絡我們
ugm page 自訂頁面
ugm table 萬用表格
Yaoh Servicelearning 服務學習管理系統
dummy 自訂模組
soone_submit 投稿模組
Tad Adm 站長工具箱
Tad Assignment 作業上傳展示模組
Tad Blocks 進階區塊管理
Tad Book3 線上書籍
Tad Cal 行事曆
Tad Cbox 即時留言簿
Tad Discuss 討論區模組
Tad Embed 崁入模組
Tad Evaluation 評鑑檔案管理
Tad Form 萬用表單模組
Tad FAQ 常見問答
Tad Google 相簿
Tad Gallery 電子相簿
Tad Guide 安裝精靈
Tad Honor 榮譽榜
Tad idioms 背背成語
Tad Link 好站連結
Tad Login 快速登入
Tad Lunch3 午餐資訊
Tad Lunch2 營養午餐公告
Tad Meeting 會議系統
Tad Merage 線上合併套印
Tad News 本站消息
Tad Player 影音播放
Tad RSS 友站新聞
Tad Repair 維修通報
Tad SiteMap網站地圖
Tad Timeline 重要紀事
Tad Themes 佈景管理
Tad Tools 工具包
Tad TV 直播電視
Tad Uploader 檔案上傳模組
Tad Users 大量會員管理
Tad Web 多人網頁模組
MyTabs 我的頁籤
Random Quote 隨機小語
LogCounterX 網站流量統計
Yaoh light 多區塊多層次跑馬燈模組
校園網站輕鬆架功能建議區
佈景討論區
即時留言簿
search
進階搜尋
計數器
今天:
昨天:
總計: