在 a 標籤中 href 屬性中,開頭加上 tel:撥打的電話號碼 ,在手機上按下此連結會呼叫手機撥號的應用程式,並把電話輸入在電話欄中,非常方便,但要注意電話號碼格式,只能輸入數字
錯誤:02-2888-8888
正確:0228888888
<a href="tel:0228888888">聯絡我們</a>
[……]
在 a 標籤中 href 屬性中,開頭加上 tel:撥打的電話號碼 ,在手機上按下此連結會呼叫手機撥號的應用程式,並把電話輸入在電話欄中,非常方便,但要注意電話號碼格式,只能輸入數字
錯誤:02-2888-8888
正確:0228888888
<a href="tel:0228888888">聯絡我們</a>
[……]
當a 標籤直接指向檔案時,會由瀏覽器去決定開啟方式,”給敖”的去決定下載還是開啟檔案,例如PDF,瀏覽器通常會直接開啟檔案,但有些檔案,希望User可以直接下載,在HTML5中有新的方式可以指定用下載的方式,範例於下方程式碼:
http://hant.ask.helplib.com/javascript/post_406301
https://stackoverflow.com/questions/11620698/how-to-trigger-a-file-download-when-clicking-an-html-button-or-javascript
[……]
/** * https://vector.cool */ Namespace VECTOR\COOL; function test() { echo "Hello world!\n"; } VECTOR\COOL\test();
/** * https://vector.cool */ namespace VECTOR\COOL; class HELLO{ static public function test() { echo "Hello world!\n"; } } VECTOR\COOL\HELLO::test();
<?php /** * https://vector.cool */ Namespace VECTOR\COOL; function test() { echo "Hello world!\n"; } add_action('init','VECTOR\COOL\test');
http://php.net/manual/en/language.namespaces.nsconstants.php[……]
使用 __NAMESPACE__ 取得當前文件的 Namespace
/** * https://vector.cool */ Namespace VECTOR\COOL; function test() { echo "Hello world!\n"; } call_user_func(__NAMESPACE__ .'\test');
/** * https://vector.cool */ Namespace VECTOR\COOL; class Hello { static public function test() { echo "Hello world!\n"; } } call_user_func(__NAMESPACE__ .'\Hello::test'); // String call_user_func(array(__NAMESPACE__ .'\Hello', 'test')); // Array
/** * https://vector.cool */ Namespace V123\PLUGIN\CFU; add_action('init',__NAMESPACE__.'\create_initial_admin_menu');
http://php.net/manual/en/language.namespaces.nsconstants.php
https://stackoverflow.com/questions/14682356/relative-namespaces-and-call-user-func[……]
.gray { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale(100%); filter: gray; }
[……]
<style> /* 水平鏡射 */ .flipx { -moz-transform:scaleX(-1); -webkit-transform:scaleX(-1); -o-transform:scaleX(-1); transform:scaleX(-1); filter:FlipH; } /* 垂直鏡射 */ .flipy { -moz-transform:scaleY(-1); -webkit-transform:scaleY(-1); -o-transform:scaleY(-1); transform:scaleY(-1); filter:FlipV; } </style>
[……]
客戶反映在IE結尾都有奇怪的框框,原來還有人在用IE阿?
好吧!想辦法解決
原本以為這是邊框,所以天真的想說CSS加個 border:none 就解了,果然是我太天真,完全沒動!!
Google 一下,這似乎跟網路字型的Bug有關,使用下方的 CSS 就解囉
/* https://vector.cool */ /* 消除 IE <br> 的詭異框框 */ br { font-family: unset !important; font: unset !important; }
下圖,詭異的框框都不見了。
[……]
開啟微信 WeChat APP
按右下角「我的設定」。
接著,我的設定頁面右上角按 QRCode icon
這時會出現你的 QRCode,按一下右上角的三個點開啟選項。
按下「儲存到手機」按紐。
QRCode 圖片就會存到手機相簿中。
打開手機相簿,就可以看到剛剛匯出的 QRCode
可以透過手機分享功能,分享自己的 QRCode
[……]
開發PHP時,難免要修改PHP.ini,問題來了,PHP.ini在哪裡,我們可以透過一個簡單的方式找到 PHP.ini 的檔案路徑
建立一個PHP檔案,裡面就寫一行 phpinfo(),運行這個檔案,它會列出所有PHP相關資訊
<?php phpinfo();
PHP.ini 就在下方紅框處,這是Windows上的PHP,Linux上的PHP一樣可以這麼用[……]