Pchp.Library.Arrays.array_walk_recursive C# (CSharp) Method

array_walk_recursive() public static method

Applies a user function or method on each element of a specified array recursively.
See Walk(PHP.Core.Reflection.DTypeDesc,PhpHashtable,PhpCallback,object) for details.
or are null references.
public static array_walk_recursive ( Context ctx, [ array, IPhpCallable callback ) : bool
ctx Pchp.Core.Context
array [
callback IPhpCallable
return bool
        public static bool array_walk_recursive(Context ctx, [In, Out] PhpHashtable array, IPhpCallable callback)
        {
            return array_walk_recursive(ctx, array, callback, PhpValue.Null);
        }

Same methods

Arrays::array_walk_recursive ( Context ctx, [ array, IPhpCallable callback, PhpValue data ) : bool