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

array_walk() public static method

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

Same methods

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