sizeof

(PHP 4, PHP 5)

sizeofПсевдоним count()

Описание

Эта функция является псевдонимом: count().

Коментарии

Автор:
If your array is "huge"

It is reccomended to set a variable first for this case:

THIS->

$max = sizeof($huge_array);
for($i = 0; $i < $max;$i++)
{
code...
}

IS QUICKER THEN->

for($i = 0; $i < sizeof($huge_array);$i++)
{
code...
}
2008-04-10 09:55:53
http://php5.kiev.ua/manual/ru/function.sizeof.html
Автор:
I am quite surprised about previous posts. Here are my advices:

1/ prefer the count() function instead of sizeOf() as sizeOf() is only an alias of count() and does not mean the same in many other languages based on C (avoid ambiguity).

2/ prefer the powerful forEach() function to iterate over arrays.
2008-09-23 12:09:13
http://php5.kiev.ua/manual/ru/function.sizeof.html
a) Always try and use PHP's internal routines to iterate through objects of various types (arrays in most examples below).

Instead of interpreting your code to loop through them, they use their own internal routines which are much faster.

(This is why foreach () will run faster than manual interation)

b) It is _always_ good practice to leave as many static resulting functions outside of loops, having operations that return the exact same piece of data every iteration of the loop is not pretty on resources.

c) I agree with PixEye's remarks on sizeof().  In PHP it is just an alias for the true function count().  It has other meanings logically in other languages rather than the number of elements in an object.  This should be avoided as it may confuse developers transitioning to PHP from other languages.
2008-09-23 17:38:51
http://php5.kiev.ua/manual/ru/function.sizeof.html
I would recommend not using sizeof(). Many programmers expect sizeof() to return the amount of memory allocated. Instead sizeof() -as described above- is an alias for count().

Prevent misinterpretation and use count() instead.
2013-09-03 00:15:17
http://php5.kiev.ua/manual/ru/function.sizeof.html

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