PHP Function List
str_count doesn't exist. Closest matches:
- substr_count
- str_word_count
- mb_substr_count
- count
- mhash_count
- iterator_count
- mb_strcut
- str_rot13
- tidy_error_count
- sqlite_column
- strcoll
- strcspn
- sqlite_current
- socket_connect
- msession_count
- sqlsrv_connect
- ocirowcount
- ftp_connect
- mysqli_param_count
- tidy_warning_count
Site Search Results
-
substr_count() returns the number of times the needle substring occurs in the haystack string. Please note that needle is case sensitive.
-
str_word_count (PHP 4 >= 4.3.0, PHP 5) str_word_count — Return information about words used in a string
-
function utf8_strlen ($str) { $count = 0; for ($i = 0; $i < strlen ($str); ++ $i) { if ((ord ($str [$i]) & 0xC0) != 0x80) { ++ $count; } } return $count;
-
$str = "<? \$count=0 ?>";} else{ include "counter.txt"; $count ++; $str = "<? \$count=". $count." ?>"; $handle = fopen ($file, 'r+');
-
if (ereg("Records: ([0-9]*)", $info_str, $count) == false) { ereg("Rows matched: ([0-9]*)", $info_str, $count); } return $count;
-
$str = count_chars ($str, 3); // Check for null character if (! ord ($str [0])) { return false; } // Check for 8-bit character if (ord ($str [strlen ($str)-1]) & 128)
-
Returns the portion of string specified by the start and length parameters.
-
Compress a string's internal spaces: <?php $str = ' This is a test '; $count = 1; while($count) $str = str_replace (' ', ' ', $str, $count);
-
function ascii_to_entities ($str) { $count = 1; $out = ''; $temp = array(); for ($i = 0, $s = strlen ($str); $i < $s; $i++)
-
$getdata_str = count ($getdata) ? '?' : ''; $postdata_str = ''; foreach ($getdata as $k => $v) $getdata_str .= urlencode ($k) .

Other forms of search
To search the string "str_count" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
