Список функций и методов

Список всех функций и методов в руководстве

a b c d e f g h i j k l m n o p q r s t u v w x y z _

Коментарии

In case anyone was wondering, the total function/method count in this list as of this date is exactly 9457
2015-04-07 05:17:29
http://php5.kiev.ua/manual/ru/indexes.functions.html
Автор:
Total number of php functions/methods listed above are 9634.
Today's date is 1/1/2016. (mm/dd/yy)
2016-01-01 21:39:20
http://php5.kiev.ua/manual/ru/indexes.functions.html
Автор:
Total number of functions listed above: 9450.
(04/14/2016 [mm/dd/yyyy])
2016-04-14 12:42:57
http://php5.kiev.ua/manual/ru/indexes.functions.html
Here's a little script that scrapes all PHP function names from this page, and outputs a prefix-compressed Perl Compatible Regular Expression matching them. Useful for syntax highlighting.

<?php

$html 
file_get_contents('indexes.functions');

preg_match_all('/<li><a href="function.[^>]*>([a-zA-Z0-9_]*)<\/a>/'$html$matches);
$funcs $matches[1];

print 
'\b(?:';
$prefixes = [''];

foreach(
$funcs as $i => $func) {
    while(
substr($func0strlen($prefixes[0])) !== $prefixes[0]) {
        print 
")";
       
array_shift($prefixes);
    }
    if (
$i) print '|';

    while(
true) {
       
$common $func;
        for(
$j $i+1$j count($funcs); $j++) {
           
$lookAhead $funcs[$j];
           
$maxLen min(strlen($lookAhead), strlen($func));
            for(
$ch 0$ch $maxLen$ch++) {
                if (
$lookAhead[$ch] !== $func[$ch]) break;
            }
           
$newCommon substr($common0$ch);
            if (
strlen($newCommon) < strlen($prefixes[0])+2) break;
           
$common $newCommon;
        }
        if (
$j $i+4) break; // at least 4 functions with a common prefix of at least 2 chars
       
print substr($commonstrlen($prefixes[0])) . "(?:";
       
array_unshift($prefixes$common);
    }
   
    print 
substr($funcstrlen($prefixes[0]));
}

print 
')\b';
2017-02-14 10:23:49
http://php5.kiev.ua/manual/ru/indexes.functions.html
Автор:
In case anybody wondering as of 21/04/2017 [dd/mm/yyyy] there are exactly 9957 Functions listed above.
2017-04-21 21:18:24
http://php5.kiev.ua/manual/ru/indexes.functions.html
Today : 2018-04-13
10641 functions in this list !

Keep growing ;)
2018-04-13 12:29:10
http://php5.kiev.ua/manual/ru/indexes.functions.html
Today 07-01-2019 [dd.mm.yyyy]

10934 functions in this list 🍺
2019-01-07 18:40:28
http://php5.kiev.ua/manual/ru/indexes.functions.html
A new update regarding the number of entries in the list. We are currently at 11033 entries, in June 2019
2019-06-20 16:18:02
http://php5.kiev.ua/manual/ru/indexes.functions.html
Автор:
Today 2022-07-01 (yyyy-mm-dd)

8612 functions in this list.
2022-07-01 13:24:41
http://php5.kiev.ua/manual/ru/indexes.functions.html

    Поддержать сайт на родительском проекте КГБ