gitextract_337cjps5/ ├── 001.md ├── 002.md ├── 003.md ├── 004.md ├── 01.md ├── 02.md ├── 03.md ├── 04.md ├── 05.md ├── 06.md ├── 07.md ├── 08.md ├── 09.md ├── 10.md ├── 11.md ├── 12.md ├── 13.md ├── 14.md ├── README.md └── codes/ ├── array/ │ ├── .deps │ ├── .libs/ │ │ ├── array.lai │ │ ├── array.o │ │ └── array.so.dSYM/ │ │ └── Contents/ │ │ └── Info.plist │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── Makefile │ ├── Makefile.fragments │ ├── Makefile.global │ ├── Makefile.objects │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── array.c │ ├── array.la │ ├── array.lo │ ├── array.php │ ├── autom4te.cache/ │ │ ├── output.0 │ │ ├── requests │ │ └── traces.0 │ ├── build/ │ │ ├── libtool.m4 │ │ ├── mkdep.awk │ │ ├── scan_makefile_in.awk │ │ └── shtool │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.m4 │ ├── config.nice │ ├── config.status │ ├── config.sub │ ├── config.w32 │ ├── configure │ ├── configure.in │ ├── install-sh │ ├── libtool │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── php_array.h │ ├── run-tests.php │ └── tests/ │ └── 001.phpt ├── consts/ │ ├── .deps │ ├── .libs/ │ │ ├── consts.lai │ │ ├── consts.o │ │ └── consts.so.dSYM/ │ │ └── Contents/ │ │ └── Info.plist │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── Makefile │ ├── Makefile.fragments │ ├── Makefile.global │ ├── Makefile.objects │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autom4te.cache/ │ │ ├── output.0 │ │ ├── requests │ │ └── traces.0 │ ├── build/ │ │ ├── libtool.m4 │ │ ├── mkdep.awk │ │ ├── scan_makefile_in.awk │ │ └── shtool │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.m4 │ ├── config.nice │ ├── config.status │ ├── config.sub │ ├── config.w32 │ ├── configure │ ├── configure.in │ ├── consts.c │ ├── consts.la │ ├── consts.lo │ ├── consts.php │ ├── install-sh │ ├── libtool │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── php_consts.h │ ├── run-tests.php │ └── tests/ │ └── 001.phpt ├── fcall/ │ ├── .deps │ ├── .libs/ │ │ ├── fcall.lai │ │ ├── fcall.o │ │ └── fcall.so.dSYM/ │ │ └── Contents/ │ │ └── Info.plist │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── Makefile │ ├── Makefile.fragments │ ├── Makefile.global │ ├── Makefile.objects │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autom4te.cache/ │ │ ├── output.0 │ │ ├── requests │ │ └── traces.0 │ ├── build/ │ │ ├── libtool.m4 │ │ ├── mkdep.awk │ │ ├── scan_makefile_in.awk │ │ └── shtool │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.m4 │ ├── config.nice │ ├── config.status │ ├── config.sub │ ├── config.w32 │ ├── configure │ ├── configure.in │ ├── fcall.c │ ├── fcall.la │ ├── fcall.lo │ ├── fcall.php │ ├── install-sh │ ├── libtool │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── php_fcall.h │ ├── run-tests.php │ └── tests/ │ └── 001.phpt ├── global/ │ ├── .deps │ ├── .libs/ │ │ ├── global.lai │ │ ├── global.o │ │ └── global.so.dSYM/ │ │ └── Contents/ │ │ └── Info.plist │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── Makefile │ ├── Makefile.fragments │ ├── Makefile.global │ ├── Makefile.objects │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autom4te.cache/ │ │ ├── output.0 │ │ ├── requests │ │ └── traces.0 │ ├── build/ │ │ ├── libtool.m4 │ │ ├── mkdep.awk │ │ ├── scan_makefile_in.awk │ │ └── shtool │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.m4 │ ├── config.nice │ ├── config.status │ ├── config.sub │ ├── config.w32 │ ├── configure │ ├── configure.in │ ├── global.c │ ├── global.la │ ├── global.lo │ ├── global.php │ ├── install-sh │ ├── libtool │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── php_global.h │ ├── run-tests.php │ └── tests/ │ └── 001.phpt ├── globalss/ │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── config.m4 │ ├── config.w32 │ ├── globalss.c │ ├── globalss.php │ ├── php_globalss.h │ └── tests/ │ └── 001.phpt ├── inis/ │ ├── .deps │ ├── .libs/ │ │ ├── inis.lai │ │ ├── inis.o │ │ └── inis.so.dSYM/ │ │ └── Contents/ │ │ └── Info.plist │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── Makefile │ ├── Makefile.fragments │ ├── Makefile.global │ ├── Makefile.objects │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autom4te.cache/ │ │ ├── output.0 │ │ ├── requests │ │ └── traces.0 │ ├── build/ │ │ ├── libtool.m4 │ │ ├── mkdep.awk │ │ ├── scan_makefile_in.awk │ │ └── shtool │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.m4 │ ├── config.nice │ ├── config.status │ ├── config.sub │ ├── config.w32 │ ├── configure │ ├── configure.in │ ├── inis.c │ ├── inis.la │ ├── inis.lo │ ├── inis.php │ ├── install-sh │ ├── libtool │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── php_inis.h │ ├── run-tests.php │ └── tests/ │ └── 001.phpt ├── libs/ │ ├── .deps │ ├── .libs/ │ │ ├── libs.lai │ │ ├── libs.o │ │ └── libs.so.dSYM/ │ │ └── Contents/ │ │ └── Info.plist │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── Makefile │ ├── Makefile.fragments │ ├── Makefile.global │ ├── Makefile.objects │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autom4te.cache/ │ │ ├── output.0 │ │ ├── requests │ │ └── traces.0 │ ├── build/ │ │ ├── libtool.m4 │ │ ├── mkdep.awk │ │ ├── scan_makefile_in.awk │ │ └── shtool │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.m4 │ ├── config.nice │ ├── config.status │ ├── config.sub │ ├── config.w32 │ ├── configure │ ├── configure.in │ ├── install-sh │ ├── libs.c │ ├── libs.la │ ├── libs.lo │ ├── libs.php │ ├── libtool │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── php_libs.h │ ├── run-tests.php │ └── tests/ │ └── 001.phpt ├── objects1/ │ ├── .deps │ ├── .libs/ │ │ ├── objects1.lai │ │ ├── objects1.o │ │ └── objects1.so.dSYM/ │ │ └── Contents/ │ │ └── Info.plist │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── Makefile │ ├── Makefile.fragments │ ├── Makefile.global │ ├── Makefile.objects │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autom4te.cache/ │ │ ├── output.0 │ │ ├── requests │ │ └── traces.0 │ ├── build/ │ │ ├── libtool.m4 │ │ ├── mkdep.awk │ │ ├── scan_makefile_in.awk │ │ └── shtool │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.m4 │ ├── config.nice │ ├── config.status │ ├── config.sub │ ├── config.w32 │ ├── configure │ ├── configure.in │ ├── install-sh │ ├── libtool │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── objects1.c │ ├── objects1.la │ ├── objects1.lo │ ├── objects1.php │ ├── php_objects1.h │ ├── run-tests.php │ └── tests/ │ └── 001.phpt ├── objects2/ │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── config.m4 │ ├── config.w32 │ ├── objects2.c │ ├── objects2.php │ ├── php_objects2.h │ └── tests/ │ └── 001.phpt ├── objects3/ │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── config.m4 │ ├── config.w32 │ ├── objects3.c │ ├── objects3.php │ ├── php_objects3.h │ └── tests/ │ └── 001.phpt ├── params/ │ ├── .deps │ ├── .libs/ │ │ ├── params.lai │ │ ├── params.o │ │ └── params.so.dSYM/ │ │ └── Contents/ │ │ └── Info.plist │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── Makefile │ ├── Makefile.fragments │ ├── Makefile.global │ ├── Makefile.objects │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autom4te.cache/ │ │ ├── output.0 │ │ ├── requests │ │ └── traces.0 │ ├── build/ │ │ ├── libtool.m4 │ │ ├── mkdep.awk │ │ ├── scan_makefile_in.awk │ │ └── shtool │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.m4 │ ├── config.nice │ ├── config.status │ ├── config.sub │ ├── config.w32 │ ├── configure │ ├── configure.in │ ├── install-sh │ ├── libtool │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── params.c │ ├── params.la │ ├── params.lo │ ├── params.php │ ├── php_params.h │ ├── run-tests.php │ └── tests/ │ └── 001.phpt ├── php_hello/ │ ├── .deps │ ├── .libs/ │ │ ├── php_hello.lai │ │ ├── php_hello.o │ │ └── php_hello.so.dSYM/ │ │ └── Contents/ │ │ └── Info.plist │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── Makefile │ ├── Makefile.fragments │ ├── Makefile.global │ ├── Makefile.objects │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autom4te.cache/ │ │ ├── output.0 │ │ ├── requests │ │ └── traces.0 │ ├── build/ │ │ ├── libtool.m4 │ │ ├── mkdep.awk │ │ ├── scan_makefile_in.awk │ │ └── shtool │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.m4 │ ├── config.nice │ ├── config.status │ ├── config.sub │ ├── config.w32 │ ├── configure │ ├── configure.in │ ├── install-sh │ ├── libtool │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── php_hello.c │ ├── php_hello.la │ ├── php_hello.lo │ ├── php_hello.php │ ├── php_php_hello.h │ ├── run-tests.php │ └── tests/ │ └── 001.phpt ├── resource/ │ ├── .deps │ ├── .libs/ │ │ ├── resource.lai │ │ ├── resource.o │ │ └── resource.so.dSYM/ │ │ └── Contents/ │ │ └── Info.plist │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── Makefile │ ├── Makefile.fragments │ ├── Makefile.global │ ├── Makefile.objects │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autom4te.cache/ │ │ ├── output.0 │ │ ├── requests │ │ └── traces.0 │ ├── build/ │ │ ├── libtool.m4 │ │ ├── mkdep.awk │ │ ├── scan_makefile_in.awk │ │ └── shtool │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.m4 │ ├── config.nice │ ├── config.status │ ├── config.sub │ ├── config.w32 │ ├── configure │ ├── configure.in │ ├── install-sh │ ├── libtool │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── php_resource.h │ ├── resource.c │ ├── resource.la │ ├── resource.lo │ ├── resource.php │ ├── run-tests.php │ └── tests/ │ └── 001.phpt ├── return/ │ ├── .deps │ ├── .libs/ │ │ ├── return.lai │ │ ├── return.o │ │ └── return.so.dSYM/ │ │ └── Contents/ │ │ └── Info.plist │ ├── .svnignore │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── Makefile │ ├── Makefile.fragments │ ├── Makefile.global │ ├── Makefile.objects │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autom4te.cache/ │ │ ├── output.0 │ │ ├── requests │ │ └── traces.0 │ ├── build/ │ │ ├── libtool.m4 │ │ ├── mkdep.awk │ │ ├── scan_makefile_in.awk │ │ └── shtool │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.m4 │ ├── config.nice │ ├── config.status │ ├── config.sub │ ├── config.w32 │ ├── configure │ ├── configure.in │ ├── install-sh │ ├── libtool │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── php_return.h │ ├── return.c │ ├── return.la │ ├── return.lo │ ├── return.php │ ├── run-tests.php │ └── tests/ │ └── 001.phpt └── zval1/ ├── .svnignore ├── CREDITS ├── EXPERIMENTAL ├── config.m4 ├── config.w32 ├── php_zval1.h ├── tests/ │ └── 001.phpt ├── zval1.c └── zval1.php