php7-internal icon indicating copy to clipboard operation
php7-internal copied to clipboard

PHP7内核剖析

Results 16 php7-internal issues
Sort by recently updated
recently updated
newest added

在下面这篇文章中: https://github.com/pangudashu/php7-internal/blob/master/2/zval.md 有个demo: ``` $a = "time:" . time(); //$a -> zend_string_1(refcount=1) $b = $a; //$a,$b -> zend_string_1(refcount=2) $c = $b; //$a,$b,$c -> zend_string_1(refcount=3) unset($b); //$b = IS_UNDEF $a,$c ->...

错别字 '纯粹' 修正

请求处理完后发现需要g c, 之后是哪个地方去集中处理的?PHP-FPM? 还是等到下一次请求来了先把上一次g c先处理完,还是有个专门的gc线程 定时扫描?

Hello @pangudashu. Do you have any plan for translating to English?

众所周知, php是使用automake工具进行管理和编译的。但是我只在各个文件夹中看到了Makefile.am文件(例如 php-5.6.31/TSRM/Makefile.am) ,并没有在最外层(php-5.6.31/)看到。 那么php是如何使用autolib工具的?只有Makefile.global和Makefile.frag。这两个文件的作用是什么?