2013/08/13

影片嵌入碼從資料庫撈出來 去除反斜線 - stripslashes()

我要新增一個功能就是將youtube影片的內嵌碼放到資料庫
並在前台撈出來顯示, 而發現在資料庫裏面存的語法系統已經自動將雙引號前加入反斜線
所以要去除反斜線, 我使用 stripslashes()

EX:
$txt = stripslashes($txt);

stripslashes — 去除addslashes( )引用的斜線
語法 : string stripslashes (string str)
說明 :
傳回去除反斜線後的字串,連續的二個反斜線會成為一個反斜線。

2013/08/02

處理 [Solution] Script cannot be loaded because running scripts is disabled on this system

跑window power shell時候
如果你也遇到這樣的事情, 就是”Script cannot be loaded because running scripts is disabled on this system”

找到一個方法:
Run the following statement from a Command prompt (not a PS prompt):
下面方式可成功, 請在cmd (一般command line interface)執行:
c:\windows\syswow64\WindowsPowerShell\v1.0\powershell.exe -command set-executionpolicy unrestricted