iT邦幫忙

鐵人檔案

2021 iThome 鐵人賽
回列表
自我挑戰組

PHP 與 Laravel 雜記 系列

這是一份紀錄 PHP 與 Laravel 的學習雜記

參賽天數 14 天 | 共 14 篇文章 | 5 人訂閱 訂閱系列文 RSS系列文
DAY 1

來認識 PHP 與 Laravel

PHP 幹古 最早於 1994 由 Rasmus Lerdorf 用 C 語言開發的 CGI 程式, 一開始只用來追蹤訪問者的訊息, 作為用來更新自己的個人網頁...

2021-09-15 ‧ 由 pigbrother 分享
DAY 2

PHP 規範

PHP FIG PHP Framework Interop Group 簡稱 PHO FIG, 一個 PHP 框架的社群組織, 提供一些建議的 PHP 標準規範...

2021-09-16 ‧ 由 pigbrother 分享
DAY 3

PHP 基礎複習

安裝 php官網下載目前最新版本為 8.0, 這裡以 windows 作為開發平台, windows 版本有 NTS(Non Thread safe) 跟 TS...

2021-09-17 ‧ 由 pigbrother 分享
DAY 4

PHP 一些概念

匯入 require: 可匯入多次, 如果出現錯誤, 會出現提醒, 並停止代碼運行 include: 可匯入多次, 如果出現錯誤, 會出現提醒, 並繼續運行下...

2021-09-18 ‧ 由 pigbrother 分享
DAY 5

PHP 一些特性

Closure 類、匿名函數 Closure class用來表示匿名函數 (anonymous function), PHP 5.3 開始支持, <?ph...

2021-09-19 ‧ 由 pigbrother 分享
DAY 6

PHP array 相關函數

PHP array 相關函數 <?php /* array_reverse(array $array, bool $preserve_keys = fal...

2021-09-20 ‧ 由 pigbrother 分享
DAY 7

PHP 正則相關函數

PHP Regular expression 本來 PHP 支援兩類 regular expression, 一種為 POSIX-style 相關函數名稱包含...

2021-09-21 ‧ 由 pigbrother 分享
DAY 8

PHP 關於 autoload

Autoload PHP 可以透過 include、include_once、require、require_once 來將檔案引入, 一般來說以 OOP 寫法...

2021-09-22 ‧ 由 pigbrother 分享
DAY 9

MVC 架構

MVC 分別是 Model, View, Controller, 是一種軟體架構, View 負責使用者畫面如何呈現, Controller 接收使用者入的資料...

2021-09-23 ‧ 由 pigbrother 分享
DAY 10

PHP 與 資料庫的連接 使用 MySQLi

使用 MySQLi MySQLi 全稱 MySQL Improved extension, 算是 MySQL extension 的加強版, 本來 PHP 只提...

2021-09-24 ‧ 由 pigbrother 分享