cvs: phpdoc-sk /reference/ctype/functions ctype-alnum.xml ctype-alpha.xml ctype-cntrl.xml ctype-digit.xml ctype-graph.xml ctype-lower.xml ctype-print.xml ctype-punct.xml ctype-space.xml ctype-upper.xml ctype-xdigit.xml

[email protected] ("Joseph Drake") Wed, 21 May 2003 21:28:26 -0000
Newsgroups php.doc.sk
Message-ID <cvsjoseph1053552506@cvsserver>
joseph		Wed May 21 17:28:26 2003 EDT

  Added files:                 
    /phpdoc-sk/reference/ctype/functions	ctype-alnum.xml 
                                        	ctype-alpha.xml 
                                        	ctype-cntrl.xml 
                                        	ctype-digit.xml 
                                        	ctype-graph.xml 
                                        	ctype-lower.xml 
                                        	ctype-print.xml 
                                        	ctype-punct.xml 
                                        	ctype-space.xml 
                                        	ctype-upper.xml 
                                        	ctype-xdigit.xml 
  Log:
  new function
joseph-20030521172826.txt (text/plain, 16.3 KB)
Index: phpdoc-sk/reference/ctype/functions/ctype-alnum.xml
+++ phpdoc-sk/reference/ctype/functions/ctype-alnum.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/ctype.xml, last change in rev 1.1 -->
  <refentry id="function.ctype-alnum">
   <refnamediv>
    <refname>ctype_alnum</refname>
    <refpurpose>Skontrolova» alfanumerický(é) znak(y)</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
    <methodsynopsis>
     <type>bool</type><methodname>ctype_alnum</methodname>
     <methodparam><type>string</type><parameter>text</parameter></methodparam>
    </methodsynopsis>
    <para>
     Vracia &true;, ak ka¾dý znak v <parameter>text</parameter>e je buï
     písmeno alebo èíslica, inak &false;. V ¹tandardnej <literal>C</literal> 
     lokále sú písmenami práve <literal>[A-Za-z]</literal>. Funkcia je ekvivalentná
     k <literal>(ctype_alpha($text) || ctype_digit($text))</literal>.
    </para>
    <para>
     Tie¾ pozri <function>ctype_alpha</function>, <function>ctype_digit</function>
     a <function>setlocale</function>.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/ctype/functions/ctype-alpha.xml
+++ phpdoc-sk/reference/ctype/functions/ctype-alpha.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/ctype.xml, last change in rev 1.1 -->
  <refentry id="function.ctype-alpha">
   <refnamediv>
    <refname>ctype_alpha</refname>
    <refpurpose>Skontrolova» abecedný(é) znak(y)</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
    <methodsynopsis>
     <type>bool</type><methodname>ctype_alpha</methodname>
     <methodparam><type>string</type><parameter>text</parameter></methodparam>
    </methodsynopsis>
    <para>
     Vracia &true;, ak ka¾dý znak v <parameter>text</parameter>e je
     písmenom z aktuálnej lokály, inak &false;. 
     V ¹tandardnej <literal>C</literal> lokále sú písmenami práve
     <literal>[A-Za-z]</literal> a <function>ctype_alpha</function> je 
     ekvivalentná k <literal>(ctype_upper($text) || ctype_lower($text))</literal>,
     ale iné jazyky majú písmená, ktoré sa nepova¾ujú ani za veµké
     ani malé (upper a lower case).
    </para>
    <para>
     Tie¾ pozri <function>ctype_upper</function>,
     <function>ctype_lower</function> a
     <function>setlocale</function>.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/ctype/functions/ctype-cntrl.xml
+++ phpdoc-sk/reference/ctype/functions/ctype-cntrl.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/ctype.xml, last change in rev 1.1 -->
  <refentry id="function.ctype-cntrl">
   <refnamediv>
    <refname>ctype_cntrl</refname>
    <refpurpose>Skontrolova» kontrolný(é) znak(y)</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
    <methodsynopsis>
     <type>bool</type><methodname>ctype_cntrl</methodname>
     <methodparam><type>string</type><parameter>text</parameter></methodparam>
    </methodsynopsis>
    <para>
     Vracia &true;, ak má ka¾dý znak v <parameter>text</parameter>e
     ¹peciálnu kontrolnú funkciu, inak &false;. Kontrolnými znakmi sú
     napr. line feed, tab, esc.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/ctype/functions/ctype-digit.xml
+++ phpdoc-sk/reference/ctype/functions/ctype-digit.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/ctype.xml, last change in rev 1.1 -->
  <refentry id="function.ctype-digit">
   <refnamediv>
    <refname>ctype_digit</refname>
    <refpurpose>Skotrolova» numerický(é) znak(y)</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
    <methodsynopsis>
     <type>bool</type><methodname>ctype_digit</methodname>
     <methodparam><type>string</type><parameter>text</parameter></methodparam>
    </methodsynopsis>
    <para>
     Vracia &true;, ak je ka¾dý znak v <parameter>text</parameter>e 
     desiatkové èíslica, inak &false;.
    </para>
    <para>
     Tie¾ pozri <function>ctype_alnum</function> a <function>ctype_xdigit</function>.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/ctype/functions/ctype-graph.xml
+++ phpdoc-sk/reference/ctype/functions/ctype-graph.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/ctype.xml, last change in rev 1.1 -->
  <refentry id="function.ctype-graph">
   <refnamediv>
    <refname>ctype_graph</refname>
    <refpurpose>Skotrolova» v¹etky vytlaèiteµné znaky okrem medzery</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
    <methodsynopsis>
     <type>bool</type><methodname>ctype_graph</methodname>
     <methodparam><type>string</type><parameter>text</parameter></methodparam>
    </methodsynopsis>
    <para>
     Vracia &true;, ak je ka¾dý znak v <parameter>text</parameter>e 
     vytlaèiteµný a tvorí viditeµný výstup (¾iadne biele miesta), inak
     &false;.
    </para>
    <para>
     Tie¾ pozri <function>ctype_alnum</function>, <function>ctype_print</function>
     a <function>ctype_punct</function>.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/ctype/functions/ctype-lower.xml
+++ phpdoc-sk/reference/ctype/functions/ctype-lower.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/ctype.xml, last change in rev 1.1 -->
  <refentry id="function.ctype-lower">
   <refnamediv>
    <refname>ctype_lower</refname>
    <refpurpose>Skontrolova» lowercase znak(y)</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
    <methodsynopsis>
     <type>bool</type><methodname>ctype_lower</methodname>
     <methodparam><type>string</type><parameter>text</parameter></methodparam>
    </methodsynopsis>
    <para>
     Vracia &true;, ak je ka¾dý znak v <parameter>text</parameter>e 
     lowercase písmeno v aktuálnej lokále.
    </para>
    <para>
     Tie¾ pozri <function>ctype_alpha</function> a <function>ctype_upper</function>.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/ctype/functions/ctype-print.xml
+++ phpdoc-sk/reference/ctype/functions/ctype-print.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/ctype.xml, last change in rev 1.1 -->
  <refentry id="function.ctype-print">
   <refnamediv>
    <refname>ctype_print</refname>
    <refpurpose>Skotrolova» vytlaèiteµný(é) znak(y)</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
    <methodsynopsis>
     <type>bool</type><methodname>ctype_print</methodname>
     <methodparam><type>string</type><parameter>text</parameter></methodparam>
    </methodsynopsis>
    <para>
     Vracia &true;, ak ka¾dý znak v <parameter>text</parameter>e
     vytvorí výstup (vrátane prázdnych miest). Vracia &false;, ak
     <parameter>text</parameter> obsahuje kontrolné znaky alebo znaky, ktoré
     nemajú ¾iaden výstup alebo vôbec ¾iadnu kontrolnú funkciu.
    </para>
    <para>
     Tie¾ pozri <function>ctype_cntrl</function>, <function>ctype_graph</function>
     a <function>ctype_punct</function>.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/ctype/functions/ctype-punct.xml
+++ phpdoc-sk/reference/ctype/functions/ctype-punct.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/ctype.xml, last change in rev 1.1 -->
  <refentry id="function.ctype-punct">
   <refnamediv>
    <refname>ctype_punct</refname>
    <refpurpose>
     Skontrolova» v¹etky vytlaèiteµné znaky, ktorými nie sú biele miesta
     alebo alfanumerické znaky
    </refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
    <methodsynopsis>
     <type>bool</type><methodname>ctype_punct</methodname>
     <methodparam><type>string</type><parameter>text</parameter></methodparam>
    </methodsynopsis>
    <para>
     Vracia &true;, ak je ka¾dý znak v <parameter>text</parameter>e
     vytlaèiteµný, ale ¾iadne písmeno, èíslica alebo prázdne miesto, inak
     &false;.
    </para>
    <para>
     Tie¾ pozri <function>ctype_cntrl</function>, <function>ctype_graph</function>
     a <function>ctype_punct</function>.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/ctype/functions/ctype-space.xml
+++ phpdoc-sk/reference/ctype/functions/ctype-space.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/ctype.xml, last change in rev 1.1 -->
  <refentry id="function.ctype-space">
   <refnamediv>
    <refname>ctype_space</refname>
    <refpurpose>Skontrolova» prázdny(e) znak(y)</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
    <methodsynopsis>
     <type>bool</type><methodname>ctype_space</methodname>
     <methodparam><type>string</type><parameter>text</parameter></methodparam>
    </methodsynopsis>
    <para>
     Vracia &true;, ak ka¾dý znak v <parameter>text</parameter>e
     vytvára nejaký druh bieleho miesta, inak &false;. Popri prazdnom
     znaku to tie¾ zahàòa tab, vertical tab, line feed, carriage return
     a znaky form feed.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/ctype/functions/ctype-upper.xml
+++ phpdoc-sk/reference/ctype/functions/ctype-upper.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/ctype.xml, last change in rev 1.1 -->
  <refentry id="function.ctype-upper">
   <refnamediv>
    <refname>ctype_upper</refname>
    <refpurpose>Skontrolova» uppercase znak(y)</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
    <methodsynopsis>
     <type>bool</type><methodname>ctype_upper</methodname>
     <methodparam><type>string</type><parameter>text</parameter></methodparam>
    </methodsynopsis>
    <para>
     Vracia &true;, ak je ka¾dý znak v <parameter>text</parameter>e 
     uppercase písmeno v aktuálnej lokále.
    </para>
    <para>
     Tie¾ pozri <function>ctype_alpha</function> a <function>ctype_lower</function>.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/ctype/functions/ctype-xdigit.xml
+++ phpdoc-sk/reference/ctype/functions/ctype-xdigit.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/ctype.xml, last change in rev 1.1 -->
  <refentry id="function.ctype-xdigit">
   <refnamediv>
    <refname>ctype_xdigit</refname>
    <refpurpose>
     Skontrolova» znak(y) reprezentujúci(e) hexadecimálnu èíslicu
    </refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
    <methodsynopsis>
     <type>bool</type><methodname>ctype_xdigit</methodname>
     <methodparam><type>string</type><parameter>text</parameter></methodparam>
     </methodsynopsis>
    <para>
     Vracia &true;, ak je ka¾dý znak v <parameter>text</parameter>e
     hexadecimálnou 'èíslicou', t.j. desatinná èíslica alebo znak z 
     <literal>[A-Fa-f]</literal> , inak &false;.
    </para>
    <para>
     Tie¾ pozri <function>ctype_digit</function>.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->