├── .gitignore ├── CREDITS ├── EXPERIMENTAL ├── LICENSE ├── README.cn.md ├── README.md ├── config.m4 ├── config.w32 ├── evil.c ├── evil.php ├── php_evil.h ├── tests └── 001.phpt └── tools ├── common.c ├── common.h ├── override_func.c └── override_func.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | evil -------------------------------------------------------------------------------- /EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/README.cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/config.w32 -------------------------------------------------------------------------------- /evil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/evil.c -------------------------------------------------------------------------------- /evil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/evil.php -------------------------------------------------------------------------------- /php_evil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/php_evil.h -------------------------------------------------------------------------------- /tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/tests/001.phpt -------------------------------------------------------------------------------- /tools/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/tools/common.c -------------------------------------------------------------------------------- /tools/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/tools/common.h -------------------------------------------------------------------------------- /tools/override_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/tools/override_func.c -------------------------------------------------------------------------------- /tools/override_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolifu/evil-php/HEAD/tools/override_func.h --------------------------------------------------------------------------------