时间:2021-07-01 10:21:17 帮助过:3人阅读
该怎么开始呢
1. 下载php源码,先学会编译php
2. 找个教程学习如何写php的扩展,由此切入Zend
3. 找到你想看的内置函数源码。如果不知道在哪里,可以用grep来找。
$ find -name \*.c -exec grep {} -Hne "PHP_FUNCTION (array_push" \;
./ext/standard/array.c:2054:PHP_FUNCTION(array_push)
推荐 深入理解PHP内核