Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/users/2/moriya-h5/web/confrage/php/process/stripcslashes/stripcslashes.php on line 2

Warning: include_once(http://www.confrage.com/bin/header.php): failed to open stream: no suitable wrapper could be found in /home/users/2/moriya-h5/web/confrage/php/process/stripcslashes/stripcslashes.php on line 2

Warning: include_once(): Failed opening 'http://www.confrage.com/bin/header.php' for inclusion (include_path='.:/usr/local/php/7.4/lib/php') in /home/users/2/moriya-h5/web/confrage/php/process/stripcslashes/stripcslashes.php on line 2
エスケープ文字除去 | PHP

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/php/process/stripcslashes/stripcslashes.php on line 27

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php' for inclusion (include_path='.:/usr/local/php/7.4/lib/php') in /home/users/2/moriya-h5/web/confrage/php/process/stripcslashes/stripcslashes.php on line 27
 
トップページ >  PHP >  エスケープ文字除去
初版2008/11/21: 最終更新日2008/11/21
エスケープ文字除去
目次
エスケープ文字除去
サンプルコード
サンプル
エスケープ文字除去
HTMLフォームのテキストボックスなどに入力された文字列に「'」、「"」、「\」などのPHP固有の特殊文字が含まれていると、
受け取ったデータには、それら文字の前に勝手に「\」マークが付けられています。

このようなデータの受け取りに際して、エスケープされた文字列を元に戻すにはstripcslashes関数を使います。


以下がサンプルになります。

サンプルコード
(php部)
<?php
// 「送信」ボタンが押された時
if (isset($_POST[btnExec])) {
	print "そのまま表示 : ";
	print $_POST[memo];
	print "エスケープ文字を除去した場合 : ";
	print stripcslashes($_POST[memo]);
}
?>

(html部)
<form method="post">
	<input type="text" name="memo" size="50">
	<input type="submit" name="btnExec" value="送信">
</form>

サンプル

テキストに特殊文字を含む文字列を入力し、「送信」ボタンを押します。






エスケープ文字が除去された形で表示されます。↓


Warning: Use of undefined constant btnExec - assumed 'btnExec' (this will throw an Error in a future version of PHP) in /home/users/2/moriya-h5/web/confrage/php/process/stripcslashes/stripcslashes.php on line 106

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/php/process/stripcslashes/stripcslashes.php on line 125

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php' for inclusion (include_path='.:/usr/local/php/7.4/lib/php') in /home/users/2/moriya-h5/web/confrage/php/process/stripcslashes/stripcslashes.php on line 125