Pchp.Library.Variables.@sizeof C# (CSharp) Method

@sizeof() public static method

Counts items in a variable.
If any item of the variable contains infinite recursion skips items that are repeating because of such recursion.
public static @sizeof ( PhpValue variable, int mode = COUNT_NORMAL ) : long
variable Pchp.Core.PhpValue The variable which items to count.
mode int Whether to count recursively.
return long
        public static long @sizeof(PhpValue variable, int mode = COUNT_NORMAL) => count(variable, mode);