


This article mainly introduces the brief discussion on PHP source code 15: Regarding the array_walk function, it has a certain reference value. Now I share it with you. Friends in need can refer to it.
Brief discussion on PHP source code 10 Five: About the array_walk function
array_walk
(PHP 3 >= 3.0.3, PHP 4, PHP 5)
array_walk — Apply user function to each member of the array
Description
bool array_walk (array &array, callback funcname [, mixed userdata] )
Returns TRUE if successful and FALSE if failed.
Apply the user-defined function funcname to each cell in the array array. Typically funcname accepts two parameters. The value of the array parameter is used as the first one, and the key name is used as the second one. If the optional argument userdata is provided, it will be passed as the third argument to callback funcname.
If the funcname function requires more parameters than given, an E_WARNING level error will be generated each time array_walk() calls funcname. These warnings can be suppressed by preceding the array_walk() call with PHP's error operator @, or by using error_reporting().
Note: If funcname needs to act directly on the values in the array, specify the first parameter to funcname as a reference. Thus any changes to these cells will also change the original array itself.
Note: Passing key name and userdata into funcname is new in PHP 4.0.
array_walk() is not affected by array's internal array pointer. array_walk() will walk through the entire array regardless of the position of the pointer. (This is because the program resets the pointer of the hash table where the array is located at the beginning of the array traversal)
The user should not change the array itself in the callback function. For example, add/delete units, unset units, etc. If the array that array_walk() acts on changes, the behavior of this function is undefined and unpredictable.
Program implementation description:
The last call of the extension is the function php_array_walk:
static int php_array_walk(HashTable *target_hash, zval **userdata, int recursive TSRMLS_DC)
When recursive == 0, this function is the array_walk function implementation
When recursive == 1 , this function is the implementation of the array_walk_recursive function
In the source code, the program will traverse the entire array, and for each array element, make relevant function calls based on the passed in function
The function call is as follows:
fci.size = sizeof(fci); fci.function_table = EG(function_table); fci.function_name = *BG(array_walk_func_name); fci.symbol_table = NULL; fci.object_pp = NULL; fci.retval_ptr_ptr = &retval_ptr; fci.param_count = userdata ? 3 : 2; fci.params = args; fci.no_separation = 0; /* Call the userland function */ if (zend_call_function(&fci, &array_walk_fci_cache TSRMLS_CC) == SUCCESS) {
A structure is used in this function call. The comments added by me are as follows:
typedef struct _zend_fcall_info { size_t size; // 整个结构体的长度,等于sizeof(此函数体的变量) HashTable *function_table; // executor_globals.function_table zval *function_name; // 函数名 HashTable *symbol_table; zval **retval_ptr_ptr; // 函数的返回值 zend_uint param_count; // 参数个数 zval ***params; // 所调用函数的参数 zval **object_pp; // 用于对象的方法调用时,存储对象 zend_bool no_separation; // 是否清空参数所在的栈} zend_fcall_info;
The above are personal notes. If there are any mistakes, please correct me!
EOF
The above is the entire content of this article. I hope it will be helpful to everyone’s study. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
A brief discussion on PHP source code 14: About the array_combine function
A brief discussion on PHP source code 13: Introduction to array_change_key_case and array_chunk
A brief discussion of PHP source code 12: About return_value Return value
The above is the detailed content of A brief discussion of PHP source code fifteen: About the array_walk function. For more information, please follow other related articles on the PHP Chinese website!

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Atom editor mac version download
The most popular open source editor
