[程式語言] 標點符號中英文對照表 – Programming Punctuation Marks
@ at 小老鼠 # hashtag/number 井字號 / slash 斜線 ~ tilde 波浪號 – hyphen 連字號 — dash 破折號 _ underline 底線 . dot 點 & ampersand/and 以及 * asterisk 星號/米字號 , comma 逗號 ’ apostrophe 撇號 : colon 冒號 ; […]
網頁開發知識 | Web-Dev Blog
@ at 小老鼠 # hashtag/number 井字號 / slash 斜線 ~ tilde 波浪號 – hyphen 連字號 — dash 破折號 _ underline 底線 . dot 點 & ampersand/and 以及 * asterisk 星號/米字號 , comma 逗號 ’ apostrophe 撇號 : colon 冒號 ; […]
.tar | .gz | tar.gz | zip .tar (tar) Tape Archive 縮寫的未壓縮打包工具與其格式 打包 tar cvf OutputFile.tar.gz InputFile tar cvf OutputFile.tar.gz InputFile InputFile2 InputFile3 解包 tar xvf FileName.tar 查看tar內文件不解壓縮 tar -tvf FileName.tar 進入目標資料夾 (打包不含路徑) tar cvf OutputFile.tar.gz -C InputFileWithPath . tar […]
設定檔 這裡拿一個非Default的Site Host作範例。 添加80port的設定檔範例: server { listen 80; listen [::]:80; server_name code.yidas.com; return 301 https://$server_name$request_uri; } 至於原來的設定檔則由80改至443: #listen 80; #listen [::]:80; # SSL configuration # listen 443 ssl; listen [::]:443 ssl;
原生表單加入CSRF <form method=”post”> <input type=”hidden” name=”<?= Yii::$app->request->csrfParam; ?>” value=”<?= Yii::$app->request->csrfToken; ?>” /> <button type=”submit”> Save </button> </form>