<?xml version="1.0" encoding="iso-8859-1"?> <!-- $Revision: 1.4 $ --> <!-- splitted from ./en/functions/strings.xml, last change in rev 1.4 --> <refentry id="function.count-chars"> <refnamediv> <refname>count_chars</refname> <refpurpose> Return information about characters used in a string </refpurpose> </refnamediv> <refsect1> <title>Description</title> <methodsynopsis> <type>mixed</type><methodname>count_chars</methodname> <methodparam><type>string</type><parameter>string</parameter></methodparam> <methodparam choice="opt"><type>int</type><parameter>mode</parameter></methodparam> </methodsynopsis> <para> Counts the number of occurrences of every byte-value (0..255) in <parameter>string</parameter> and returns it in various ways. The optional parameter <parameter>Mode</parameter> default to 0. Depending on <parameter>mode</parameter> <function>count_chars</function> returns one of the following: <itemizedlist> <listitem> <simpara> 0 - an array with the byte-value as key and the frequency of every byte as value. </simpara> </listitem> <listitem> <simpara> 1 - same as 0 but only byte-values with a frequency greater than zero are listed. </simpara> </listitem> <listitem> <simpara> 2 - same as 0 but only byte-values with a frequency equal to zero are listed. </simpara> </listitem> <listitem> <simpara> 3 - a string containing all used byte-values is returned. </simpara> </listitem> <listitem> <simpara> 4 - a string containing all not used byte-values is returned. </simpara> </listitem> </itemizedlist> </para> <simpara> See also <function>strpos</function> and <function>substr_count</function>. </simpara> </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 -->