|
db2_escape_string特定の文字をエスケープする 説明
string db2_escape_string(string
$string_literal )引数で指定した文字列中の特殊文字の前にバックスラッシュを追加します。 パラメータ
戻り値
例
例1 db2_escape_string の例 db2_escape_string 関数を使用した結果
上の例の出力は以下となります。 db2_escape_string: All characters: \0 , \n , \r , \\ , \' , \" , \Z . db2_escape_string: Backslash (\\). Single quote (\'). Double quote (\") db2_escape_string: The NULL character \0 must be quoted as well db2_escape_string: Intersting characters: \Z , \0 . db2_escape_string: Nothing to quote db2_escape_string: 200676 db2_escape_string: 参考
|