2015年7月22日 星期三

檔案總館 顯示所有資料夾和檔案 自動還原成未勾選


機碼

HKEY_LOCAL_MACHINE\Software\Microsoft\windows\CurrentVersion\explorer\Advanced\Folder\Hidden\SHOWALL

CheckedValue 改為 0


2015年7月8日 星期三

MySQL 連結字串方式

範例

select concat (string1, string2, string3) from table

使用 php 將字元以 hex 方式印出

範例

$string = "字串";

echo bin2hex($string);


php 調整最大執行時間


範例

ini_set('max_execution_time', 180);

預設值為 30 ,  若以命令列模式執行 php,  預設值是 0 .

Facebook 分享內容設定

在 Head 中,  參考以下範例內容加上即可

<meta property="og:title" content="標題" /> 
<meta property="og:type" content="article" /> 
<meta property="og:url" content="http://share.com" /> 
<meta property="og:image" content="http://share.com/image.jpg" />

使用 php 去除 html 標籤並留下文字內容


範例內容

$html = "<div>文字內容</div>"

echo strip_tags($html);

輸出結果

文字內容