


In-depth understanding of the internal structure of PHP kernel (5) functions, in-depth understanding of the internal structure
PHP functions include user-defined functions, internal functions (print_r count...), Anonymous function, variable function ($func = 'print_r'; $func(array('a','b'));)
The functions in the PHP kernel source code are divided into the following types
<span>#define</span> ZEND_INTERNAL_FUNCTION 1 <span>#define</span> ZEND_USER_FUNCTION 2 <span>#define</span> ZEND_OVERLOADED_FUNCTION 3 <span>#define</span> ZEND_EVAL_CODE 4 <span>#define</span> ZEND_OVERLOADED_FUNCTION_TEMPORARY 5
1. User function (ZEND_USER_FUNCTION)
Functions do not necessarily have an explicit return value. In PHP implementation, even if there is no explicit return, the PHP kernel will return NULL for us.
During the execution process of ZEND, runtime information will be stored in _zend_execute_data:
<span>struct</span><span> _zend_execute_data { </span><span>//</span><span>...省略部分代码</span> <span> zend_function_state function_state; zend_function </span>*fbc; <span>/*</span><span> Function Being Called </span><span>*/</span> <span>//</span><span>...省略部分代码</span> };
During the program initialization process, function_state will also be initialized. Function_state consists of two parts:
typedef <span>struct</span><span> _zend_function_state { zend_function </span>*<span>function; </span><span>void</span> **<span>arguments; } zend_function_state;</span>
*arguments is a pointer to function parameters, and the function body is stored in *function. *function is a zend_function structure, which ultimately stores all the information of the user-defined function. The specific structure is as follows:
<span>typedef union _zend_function { zend_uchar type; </span><span>/*</span><span> MUST be the first element of this struct! </span><span>*/</span> <span>struct</span><span> { zend_uchar type; </span><span>/*</span><span> never used </span><span>*/</span> <span>char</span> *function_name; <span>//</span><span>函数名称</span> zend_class_entry *scope; <span>//</span><span>函数所在的类作用域</span> zend_uint fn_flags; <span>//</span><span>函数类型,如用户自定义则为 #define </span> ZEND_USER_FUNCTION <span>2</span><span> union _zend_function </span>*prototype; <span>//</span><span>函数原型</span> zend_uint num_args; <span>//</span><span>参数数目</span> zend_uint required_num_args; <span>//</span><span>需要的参数数目</span> zend_arg_info *arg_info; <span>//</span><span>参数信息指针</span> <span> zend_bool pass_rest_by_reference; unsigned </span><span>char</span> return_reference; <span>//</span><span>返回值</span> <span> } common; zend_op_array op_array; </span><span>//</span><span>函数中的操作</span> <span> zend_internal_function internal_function; } zend_function;</span>
The op_array in the zend_function structure stores all the operations in the function. When the function is called, ZEND will execute the oplines in the op_array sequentially one by one and return the final result. The definition and execution of functions are separated, and a function can exist as an independent running unit.
2. Internal function (ZEND_INTERNAL_FUNCTION)
The ZEND_INTERNAL_FUNCTION function is provided by the extension or the Zend/PHP kernel. It is written in c/c and can be executed directly. The following is the structure of the internal function
typedef <span>struct</span><span> _zend_internal_function { </span><span>/*</span><span> Common elements </span><span>*/</span><span> zend_uchar type; </span><span>char</span> *<span> function_name; zend_class_entry </span>*<span>scope; zend_uint fn_flags; union _zend_function </span>*<span>prototype; zend_uint num_args; zend_uint required_num_args; zend_arg_info </span>*<span>arg_info; zend_bool pass_rest_by_reference; unsigned </span><span>char</span><span> return_reference; </span><span>/*</span><span> END of common elements </span><span>*/</span> <span>void</span> (*<span>handler)(INTERNAL_FUNCTION_PARAMETERS); </span><span>struct</span> _zend_module_entry *<span>module; } zend_internal_function;</span>
During module initialization, ZE will traverse each loaded extension module, and then create a zend_internal_function structure for each function (module->functions) specified in function_entry in the module, and set its type to ZEND_INTERNAL_FUNCTION, fill this structure into the global function table (HashTable structure); for the function setting and registration process, see the zend_register_function function in the Zend/zene_API.c file. In addition to processing the function page, this function also processes class methods, including those magic methods.
The structure of the internal function is basically similar to the structure of the user-defined function, with some differences:
- Invoking method, handler field, if it is ZEND_INTERNAL_FUNCTION, then ZEND will call zend_execute_internal and execute this function through zend_internal_function.handler. The user-defined function needs to generate intermediate code, and then map the intermediate code to the corresponding method to call it.
- The built-in function has an additional module field in the structure, indicating which module it belongs to. Different extension modules are different
- Type field. In user-defined functions, the type field is almost useless, while the type field in built-in functions serves as a distinction between several internal functions.
3. Variable function
If there are parentheses after a variable name, PHP will look for a function with the same name as the value of the variable and try to execute it.
Variable function $func
$func = <span>'</span><span>print_r</span><span>'</span><span>; $func(</span><span>'</span><span>i am print_r function.</span><span>'</span>);
Compiled intermediate code
function name: (<span>null</span><span>) number of ops: </span><span>9</span><span> compiled vars: </span>!<span>0</span> =<span> $func line # </span>* op fetch ext <span>return</span><span> operands </span>------------------------------------------------------------------------------ - - <span>2</span> <span>0</span> ><span> EXT_STMT </span><span>1</span> ASSIGN !<span>0</span><span>, </span><span>'</span><span>print_r</span><span>'</span> <span>3</span> <span>2</span><span> EXT_STMT </span><span>3</span> INIT_FCALL_BY_NAME !<span>0</span> <span>4</span><span> EXT_FCALL_BEGIN </span><span>5</span><span> SEND_VAL </span><span>'</span><span>i+am+print_r+function.</span><span>'</span> <span>6</span> DO_FCALL_BY_NAME <span>1</span> <span>7</span><span> EXT_FCALL_END </span><span>8</span> > RETURN 1
Internal function
print_r(<span>'</span><span>i am print_r function.</span><span>'</span>);
Compiled intermediate code
function name: (<span>null</span><span>) number of ops: </span><span>6</span><span> compiled vars: none line # </span>* op fetch ext <span>return</span><span> operands </span>------------------------------------------------------------------------------- - - <span>2</span> <span>0</span> ><span> EXT_STMT </span><span>1</span><span> EXT_FCALL_BEGIN </span><span>2</span><span> SEND_VAL </span><span>'</span><span>i+am+print_r+function.</span><span>'</span> <span>3</span> DO_FCALL <span>1</span> <span>'</span><span>print_r</span><span>'</span> <span>4</span><span> EXT_FCALL_END </span><span>5</span> > RETURN <span>1</span>
Comparison shows that there are some differences between the two in calling the intermediate code. The variable function is DO_FCALL_BY_NAME, while the internal function is DO_FCALL. This has already been decided during syntax parsing. See part of the code in the zend_do_end_function_call function in the Zend/zend_complie.c file:
<span>if</span> (!is_method && !is_dynamic_fcall && function_name->op_type==<span>IS_CONST) { opline</span>->opcode =<span> ZEND_DO_FCALL; opline</span>->op1 = *<span>function_name; ZVAL_LONG(</span>&opline-><span>op2.u.constant, zend_hash_func(Z_STRVAL(function_name</span>->u.constant), Z_STRLEN(function_name- >u.constant) + <span>1</span><span>)); } </span><span>else</span><span> { opline</span>->opcode =<span> ZEND_DO_FCALL_BY_NAME; SET_UNUSED(opline</span>-><span>op1); }</span>
If it is not a method and is not called dynamically, and the function name is a string variable, the intermediate code generated is ZEND_DO_FCALL. Otherwise it is ZEND_DO_FCALL_BY_NAME. In addition, the variable function is used as a callback function, and its processing process is in the zend_do_pass_param function of the Zend/zend_complie.c file, which will eventually be reflected in ZEND_SEND_VAL_SPEC_CONST_HADNLER and other functions during the execution of the intermediate code.
4. Anonymous functions
Anonymous function is a type of function or subroutine that can be called without specifying an identifier. Anonymous functions can be conveniently passed as parameters to other functions.

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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 Mac version
Visual web development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Notepad++7.3.1
Easy-to-use and free code editor
