Skip to content

Commit

Permalink
[DOCUMENTATION]Japanese sync
Browse files Browse the repository at this point in the history
git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@21148 44c647ce-9c0f-0410-b52a-842ac1e357ba
  • Loading branch information
[email protected] committed Feb 23, 2010
1 parent 9f99170 commit c3e70b2
Show file tree
Hide file tree
Showing 3 changed files with 200 additions and 49 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Reviewed: no -->
<!-- EN-Revision: 20774 -->
<!-- EN-Revision: 21123 -->
<sect1 id="zend.filter.filter_chains">

<title>フィルタチェイン</title>
Expand All @@ -11,8 +11,9 @@
小文字の英字のみに限定する場合などです。
<classname>Zend_Filter</classname> は、複数のフィルタを連結する機能を提供しています。
以下のコードで、二つのフィルタをユーザ名に対して適用する方法を説明します。
</para>

<programlisting language="php"><![CDATA[
<programlisting language="php"><![CDATA[
// フィルタチェインを作成し、そこにフィルタを追加します
$filterChain = new Zend_Filter();
$filterChain->addFilter(new Zend_Filter_Alpha())
Expand All @@ -22,10 +23,10 @@ $filterChain->addFilter(new Zend_Filter_Alpha())
$username = $filterChain->filter($_POST['username']);
]]></programlisting>

<para>
フィルタは、<classname>Zend_Filter</classname> に追加した順に適用されます。
上の例では、まずユーザ名から非英字を除去したあとで、
大文字を小文字に変換します。

</para>

<para>
Expand Down
Loading

0 comments on commit c3e70b2

Please sign in to comment.