PHP handleiding

PHP TUIS PHP Inleiding PHP installeer PHP sintaksis PHP opmerkings PHP veranderlikes PHP Echo / Druk PHP datatipes PHP Strings PHP-nommers PHP Wiskunde PHP konstante PHP-operateurs PHP As...Anders...Elseif PHP skakelaar PHP-lusse PHP funksies PHP-skikkings PHP Superglobals PHP RegEx

PHP- vorms

PHP-vormhantering PHP-vorm validering PHP-vorm word vereis PHP-vorm URL/e-pos PHP-vorm voltooi

PHP Gevorderd

PHP datum en tyd PHP sluit in PHP-lêerhantering PHP-lêer oop/lees PHP-lêer skep/skryf PHP-lêer oplaai PHP-koekies PHP-sessies PHP filters PHP-filters Gevorderd PHP-terugbelfunksies PHP JSON PHP-uitsonderings

PHP OOP

PHP Wat is OOP PHP Klasse/Objekte PHP Konstrukteur PHP vernietiger PHP Toegangswysigers PHP erfenis PHP konstante PHP Abstrakte Klasse PHP-koppelvlakke PHP eienskappe PHP statiese metodes PHP Statiese Eienskappe PHP naamruimtes PHP Iterables

MySQL- databasis

MySQL-databasis MySQL Connect MySQL Skep DB MySQL Skep tabel MySQL Voeg data in MySQL Kry Laaste ID MySQL Voeg veelvuldige in MySQL voorberei MySQL Kies Data MySQL Waar MySQL Bestel deur MySQL verwyder data MySQL-opdateringsdata MySQL-limietdata

PHP XML

PHP XML-ontleders PHP SimpleXML-ontleder PHP SimpleXML - Kry PHP XML Expat PHP XML DOM

PHP - AJAX

AJAX Intro AJAX PHP AJAX-databasis AJAX XML AJAX Live Search AJAX-peiling

PHP voorbeelde

PHP voorbeelde PHP samesteller PHP vasvra PHP Oefeninge PHP-sertifikaat

PHP- verwysing

PHP Oorsig PHP Skikking PHP-kalender PHP datum PHP gids PHP fout PHP-uitsondering PHP lêerstelsel PHP filter PHP FTP PHP JSON PHP sleutelwoorde PHP Libxml PHP-pos PHP Wiskunde PHP Diverse PHP MySQLi PHP-netwerk PHP-uitsetbeheer PHP RegEx PHP SimpleXML PHP-stroom PHP-string PHP veranderlike hantering PHP XML-ontleder PHP zip PHP Tydsones

PHP count_chars() Funksie

❮ PHP-stringverwysing

Voorbeeld

Gee 'n string terug met al die verskillende karakters wat in "Hallo Wêreld!" (modus 3):

<?php
$str = "Hello World!";
echo count_chars($str,3);
?>

Definisie en gebruik

Die count_chars()-funksie gee inligting terug oor karakters wat in 'n string gebruik word (byvoorbeeld, hoeveel keer 'n ASCII-karakter in 'n string voorkom, of watter karakters wat gebruik is of nie in 'n string gebruik is nie).


Sintaksis

count_chars(string,mode)

Parameterwaardes

Parameter Description
string Required. The string to be checked
mode Optional. Specifies the return modes. 0 is default. The different return modes are:
  • 0 - an array with the ASCII value as key and number of occurrences as value
  • 1 - an array with the ASCII value as key and number of occurrences as value, only lists occurrences greater than zero
  • 2 - an array with the ASCII value as key and number of occurrences as value, only lists occurrences equal to zero are listed
  • 3 - a string with all the different characters used
  • 4 - a string with all the unused characters


Tegniese besonderhede

Terugkeerwaarde: Afhangende van die gespesifiseerde modus parameter
PHP weergawe: 4+

Meer voorbeelde

Voorbeeld

Gee 'n string terug met al die ongebruikte karakters in "Hallo Wêreld!" (modus 4):

<?php
$str = "Hello World!";
echo count_chars($str,4);
?>

Voorbeeld

In hierdie voorbeeld sal ons count_chars() met modus 1 gebruik om die string na te gaan. Modus 1 sal 'n skikking terugstuur met die ASCII-waarde as sleutel en hoeveel keer dit as waarde voorgekom het:

<?php
$str = "Hello World!";
print_r(count_chars($str,1));
?>

Voorbeeld

Nog 'n voorbeeld van tel hoeveel keer 'n ASCII-karakter in 'n string voorkom: 

<?php
$str = "PHP is pretty fun!!";
$strArray = count_chars($str,1);

foreach ($strArray as $key=>$value)
  {
echo "The character <b>'".chr($key)."'</b> was found $value time(s)<br>";
  }
?>

❮ PHP-stringverwysing