[PHP-users 27035] Re: smartyのescapeで文字化け

Akito akito-sophia @ five-foxes.com
2005年 10月 1日 (土) 22:22:58 JST


Akitoです。

>SQLインジェクション等の危険性が出てきますので、
>何か他に解決方法はありませんでしょうか?

magic_quotes_gpc = ON にしたまま、Smarty側の表示だけ変えたいなら、

//modifier.stripslashes.php
function smarty_modifier_stripslashes($string)
{
	return stripslashes($string);
}

という、プラグインを作って、

{$value|stripslashes|escape}

とかってやるのはどうですかね?

-----
Akito <akito-sophia @ five-foxes.com>
http://php.five-foxes.com/



PHP-users メーリングリストの案内