├── .gitignore ├── CREDITS ├── EXPERIMENTAL ├── README.md ├── config.m4 ├── config.w32 ├── example └── tools.php ├── php_tools.h ├── tests └── string │ ├── insert_head.phpt │ ├── insert_tail.phpt │ ├── lower.phpt │ ├── replace.phpt │ ├── substr.phpt │ ├── upper.phpt │ └── value.phpt ├── tool_string.c └── tools.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | tools -------------------------------------------------------------------------------- /EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/config.w32 -------------------------------------------------------------------------------- /example/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/example/tools.php -------------------------------------------------------------------------------- /php_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/php_tools.h -------------------------------------------------------------------------------- /tests/string/insert_head.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/tests/string/insert_head.phpt -------------------------------------------------------------------------------- /tests/string/insert_tail.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/tests/string/insert_tail.phpt -------------------------------------------------------------------------------- /tests/string/lower.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/tests/string/lower.phpt -------------------------------------------------------------------------------- /tests/string/replace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/tests/string/replace.phpt -------------------------------------------------------------------------------- /tests/string/substr.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/tests/string/substr.phpt -------------------------------------------------------------------------------- /tests/string/upper.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/tests/string/upper.phpt -------------------------------------------------------------------------------- /tests/string/value.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/tests/string/value.phpt -------------------------------------------------------------------------------- /tool_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/tool_string.c -------------------------------------------------------------------------------- /tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stable-online/tool-php-extension/HEAD/tools.c --------------------------------------------------------------------------------