タグのリストはどこに定義されていますか。アプリケーションの コントローラにありますか?
あなたはそうすることができます。アプリケーションの他の場所でリストを再利用する可能性が高い場合は、Zend_Registryの使用を検討することをお勧めします。
アレイには<が含まれている必要がありますか?...?
ちょうど 'h1'。たとえば:
$allowedTags = array(
'a',
'b',
'em',
'strong'
);
は、アレイは、終了タグを含めなければなりませんの...?
号
例が理解されよう。
確か:
// permit only the <a>, <b>, <em> and <strong> tags
$allowedTags = array('a','b','em','strong');
// allow only the href attribute to be used in the above tags
// (which should only be within the <a> tag anyway)
$allowedAttributes = array('href');
// create an instance of Zend_Filter_StripTags to use
$stripTags = new Zend_Filter_StripTags($allowedTags,$allowedAttributes);
// now filter the string
$sanitizedInput = $stripTags->filter($userInput);
これは、あなたの質問にお答えしていますか?
はい、わかりやすい簡潔な例をありがとうございます。 – Michelle