瀏覽代碼

[MANUAL] English:

- manual fixes

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@20306 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 年之前
父節點
當前提交
43e9ec09e4
共有 1 個文件被更改,包括 9 次插入9 次删除
  1. 9 9
      documentation/manual/en/module_specs/Zend_Filter-Boolean.xml

+ 9 - 9
documentation/manual/en/module_specs/Zend_Filter-Boolean.xml

@@ -184,7 +184,7 @@ $filter = new Zend_Filter_Boolean(array(
 
 
         <programlisting language="php"><![CDATA[
         <programlisting language="php"><![CDATA[
 $filter = new Zend_Filter_Boolean(array(
 $filter = new Zend_Filter_Boolean(array(
-    'type'   => Zend_Filter_Boolean::ALL, 
+    'type'   => Zend_Filter_Boolean::ALL,
     'locale' => 'de',
     'locale' => 'de',
 ));
 ));
 
 
@@ -210,9 +210,9 @@ $filter->filter('yes');
 
 
         <para>
         <para>
             In this case <classname>Zend_Filter_Boolean</classname> will work as described in the
             In this case <classname>Zend_Filter_Boolean</classname> will work as described in the
-            following table, which shows which values return true or false. All other given values
-            are returned without change when <property>casting</property> is set to
-            <constant>FALSE</constant>
+            following table, which shows which values return <constant>TRUE</constant> or
+            <constant>FALSE</constant>. All other given values are returned without change when
+            <property>casting</property> is set to <constant>FALSE</constant>
         </para>
         </para>
 
 
         <table id="zend.filter.set.boolean.casting.table">
         <table id="zend.filter.set.boolean.casting.table">
@@ -288,17 +288,17 @@ $filter->filter('yes');
                     <row>
                     <row>
                         <entry>Zend_Filter_Boolean::FALSE_STRING</entry>
                         <entry>Zend_Filter_Boolean::FALSE_STRING</entry>
 
 
-                        <entry>"false"</entry>
+                        <entry>"false" (case independently)</entry>
 
 
-                        <entry>"true"</entry>
+                        <entry>"true" (case independently)</entry>
                     </row>
                     </row>
 
 
                     <row>
                     <row>
                         <entry>Zend_Filter_Boolean::YES</entry>
                         <entry>Zend_Filter_Boolean::YES</entry>
 
 
-                        <entry>localized "yes"</entry>
+                        <entry>localized "yes" (case independently)</entry>
 
 
-                        <entry>localized "no"</entry>
+                        <entry>localized "no" (case independently)</entry>
                     </row>
                     </row>
                 </tbody>
                 </tbody>
             </tgroup>
             </tgroup>
@@ -311,7 +311,7 @@ $filter->filter('yes');
 
 
         <programlisting language="php"><![CDATA[
         <programlisting language="php"><![CDATA[
 $filter = new Zend_Filter_Boolean(array(
 $filter = new Zend_Filter_Boolean(array(
-    'type'    => Zend_Filter_Boolean::ALL, 
+    'type'    => Zend_Filter_Boolean::ALL,
     'casting' => false,
     'casting' => false,
 ));
 ));