PHP
MYSQL
(使用 Dreamweaver 與 XAMPP 設定環境)
Learn More →
路徑指定C:\xampp\htdocs\phptest\ (此為預設路徑)
Learn More →
伺服器資料夾要指向同一個位置(C:\xampp\htdocs\phptest)
網址指定到http://localhost/phptest/
Learn More →
進階>伺服器模式要設定為 PHP MySQL
Learn More →
新增一個Dreamweaver的PHP檔案
//單行註解
/多行註解/
變數放在" "內程式碼也會執行
變數放在' '內是純文字
<?php
$name="周杰倫";
$price=400;
$goods="衣服";
cho $name ."花了" .$price ."元,買了一件".$goods
?>
也可以寫成
echo "$name 花了$price 元,買了一件$goods 。"
Learn More →
http://www.php.net/函式名稱 (可查詢函式內容)
公式:[ sprintf(字串格式,
Learn More →
/周杰倫花了400元,買了一件衣服/
Learn More →
變數 | 代表意思 |
---|---|
%s | 字串 |
%d | 整數 |
%b | 二進制 |
%c | 字元 |
%f | 浮點數 |
%x | 小寫英文字母 |
%X | 大寫英文字母 |
小提醒:先把判斷句內的括號都打好,才不容易漏掉
單純判斷式(條件句)
重複迴圈
符號 | 意思 |
---|---|
|| | or |
&& | and |
! | not |
!= | 不等於 |
== | 等於 |
> | 大於 |
>= | 大於等於 |
< | 小於 |
<= | 小於等於 |
變數函數都可以使用加減乘除符號
+ $a+7
- $a-5
* $a*3
/ $a/4
% (取餘數) 50%7→1 ; 50%12→2
練習題:if…else練習+sprintf
Learn More →
更簡單的寫法↓
<?php
$A=16;
if($A%2==1){
echo $A."是奇數";
}else{
echo $A."是偶數";
}
echo "<br>";
$B=8;
if($B%2==0){
echo $B."是偶數";
}else{
echo $B."是奇數";
}
?>
常犯錯誤
<?php
$weather="sun"
if($weather == "rain"){
echo"下雨了";
}
?>
等號要用==兩個才是PHP裡面的等於
名詞解釋 Remote Dictionary Server(Redis) 記憶體內資料存放區 (key-value database) 常用來做快取(Cache 或譯做暫存) 可以減輕資料庫的負擔 使用傳統磁碟的資料庫需要在磁碟來回處理才能執行大多數的操作,而 Redis 這類記憶體內資料存放區則不受此限制,因此回應時間更快。 參考資料
Jul 6, 2021:::info 以下範例:複製 marriagesuggestion --> 為 marriagesuggestionCh8 ::: 複製檔案資料夾,之後重新命名為 marriagesuggestionCh8 這三個資料夾內的資料夾名稱都要修改為 marriagesuggestionCh8 D:\Android\MarriageSuggestionCh8\app\src\androidTest\java\com\example\修改檔名 D:\Android\MarriageSuggestionCh8\app\src\main\java\com\example\修改檔名 D:\Android\MarriageSuggestionCh8\app\src\test\java\com\example\修改檔名
May 5, 20201.安裝Android studio 至官網下載: https://developer.android.com/studio :::danger 因為檔案很大(20-30G),記得都裝在D槽才不會占硬體空間 ::: 2.安裝SDK、ADV 安裝順序
May 5, 2020<string-array name="gender_list"> <item>男</item> <item>女</item> </string-array> 新增一個下拉選單按鈕 ID 設為 spinnerGender package com.example.marriagesuggestion; //系統檔案
May 5, 2020or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up