├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── Examples ├── CallPhpFunctions │ ├── 30-callphpfunction.ini │ ├── Makefile │ ├── callphpfunction.cpp │ └── callphpfunction.php ├── ConstStaticProp │ ├── cpp │ │ ├── Makefile │ │ ├── mytestext.cpp │ │ ├── mytestext.h │ │ └── mytestext.ini │ ├── readme │ └── test.php ├── CppClassesInPhp │ ├── Makefile │ ├── check_map.php │ ├── cppclassinphp.cpp │ ├── cppclassinphp.ini │ ├── cppclassinphp.php │ └── includeMyCustomClass.h ├── DlUnrestricted │ ├── Makefile │ ├── dlunrestricted.cpp │ ├── dlunrestricted.ini │ └── dlunrestricted.php ├── EmptyExtension │ ├── Makefile │ ├── main.cpp │ └── yourextension.ini ├── Exceptions │ ├── ExceptionCatch │ │ ├── 30-exceptionCatch.ini │ │ ├── Makefile │ │ ├── exception.php │ │ └── exceptionCatch.cpp │ └── ExceptionThrow │ │ ├── 30-exceptionThrow.ini │ │ ├── Makefile │ │ ├── exception.php │ │ └── exceptionThrow.cpp ├── Extension │ ├── 30-phpcpp.ini │ ├── Makefile │ ├── extension.cpp │ └── extension.php ├── FunctionNoParameters │ ├── 30-functionnoparameters.ini │ ├── Makefile │ ├── functionnoparameters.cpp │ └── functionnoparameters.php ├── FunctionReturnValue │ ├── 30-functionreturnvalue.ini │ ├── Makefile │ ├── functionreturnvalue.cpp │ └── functionreturnvalue.php ├── FunctionVoid │ ├── 30-functionvoid.ini │ ├── Makefile │ ├── functionvoid.cpp │ └── functionvoid.php ├── FunctionWithParameters │ ├── 30-functionwithparameters.ini │ ├── Makefile │ ├── functionwithparameters.cpp │ └── functionwithparameters.php ├── Globals │ ├── 30-globals.ini │ ├── Makefile │ ├── globals.cpp │ └── globals.php ├── IncludeOnce │ ├── 30-includeonce.ini │ ├── Makefile │ ├── class.php │ ├── includeonce.cpp │ └── includeonce.php ├── Makefile ├── README.md ├── ReturnObject │ ├── Makefile │ ├── child.h │ ├── main.cpp │ ├── master.h │ ├── returnobject.ini │ └── test.php └── simple │ ├── 30-phpcpp.ini │ ├── Makefile │ ├── simple.cpp │ └── simple.php ├── LICENSE ├── Makefile ├── README.md ├── common ├── extensionbase.h ├── includes.h ├── modifiers.cpp ├── streambuf.cpp └── streambuf.h ├── documentation ├── bubblesort.html ├── calling-functions-and-methods.html ├── classes-and-objects.html ├── constants.html ├── constructors-and-destructors.html ├── dynamic-loading.html ├── exceptions.html ├── extension-callbacks.html ├── functions.html ├── inheritance.html ├── ini.html ├── install.html ├── lambda-functions.html ├── loading-extensions.html ├── magic-interfaces.html ├── magic-methods.html ├── namespaces.html ├── output-and-errors.html ├── parameters.html ├── properties.html ├── special-features.html ├── ten-reasons-for-using-php-cpp.html ├── variables.html └── your-first-extension.html ├── include ├── argument.h ├── array.h ├── arrayaccess.h ├── base.h ├── byref.h ├── byval.h ├── call.h ├── class.h ├── classbase.h ├── classtype.h ├── constant.h ├── countable.h ├── deprecated.h ├── error.h ├── exception.h ├── extension.h ├── file.h ├── function.h ├── global.h ├── globals.h ├── hashmember.h ├── hashparent.h ├── ini.h ├── inivalue.h ├── interface.h ├── iterator.h ├── message.h ├── modifiers.h ├── namespace.h ├── noexcept.h ├── object.h ├── parameters.h ├── platform.h ├── script.h ├── serializable.h ├── stream.h ├── streams.h ├── super.h ├── thread_local.h ├── throwable.h ├── traversable.h ├── type.h ├── value.h ├── valueiterator.h ├── version.h ├── visibility.h ├── zendcallable.h └── zval.h ├── phpcpp.h └── zend ├── arithmetic.h ├── base.cpp ├── boolmember.h ├── callable.cpp ├── callable.h ├── classbase.cpp ├── classimpl.cpp ├── classimpl.h ├── classtype.h ├── compileroptions.h ├── constant.cpp ├── constantfuncs.cpp ├── constantimpl.h ├── delayedfree.h ├── error.cpp ├── eval.cpp ├── exception.cpp ├── exception_handler.cpp ├── execarguments.h ├── executestate.h ├── exists.cpp ├── extension.cpp ├── extensionimpl.cpp ├── extensionimpl.h ├── extensionpath.h ├── file.cpp ├── floatmember.h ├── function.cpp ├── functor.cpp ├── functor.h ├── global.cpp ├── globals.cpp ├── hashiterator.h ├── hashmember.cpp ├── includes.h ├── ini.cpp ├── init.h ├── inivalue.cpp ├── interface.cpp ├── invaliditerator.h ├── iteratorimpl.cpp ├── iteratorimpl.h ├── lowercase.h ├── macros.h ├── member.h ├── members.cpp ├── method.h ├── module.cpp ├── module.h ├── namespace.cpp ├── nativefunction.h ├── notimplemented.h ├── nullmember.h ├── numericmember.h ├── object.cpp ├── objectimpl.h ├── opcodes.h ├── parametersimpl.h ├── property.h ├── rethrowable.h ├── sapi.cpp ├── script.cpp ├── state.h ├── stream.cpp ├── streambuf.cpp ├── streams.cpp ├── string.h ├── stringmember.h ├── super.cpp ├── symbol.h ├── throwable.cpp ├── traverseiterator.h ├── value.cpp ├── valueiterator.cpp ├── valueiteratorimpl.h ├── zendcallable.cpp └── zval.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/CallPhpFunctions/30-callphpfunction.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/CallPhpFunctions/30-callphpfunction.ini -------------------------------------------------------------------------------- /Examples/CallPhpFunctions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/CallPhpFunctions/Makefile -------------------------------------------------------------------------------- /Examples/CallPhpFunctions/callphpfunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/CallPhpFunctions/callphpfunction.cpp -------------------------------------------------------------------------------- /Examples/CallPhpFunctions/callphpfunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/CallPhpFunctions/callphpfunction.php -------------------------------------------------------------------------------- /Examples/ConstStaticProp/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/ConstStaticProp/cpp/Makefile -------------------------------------------------------------------------------- /Examples/ConstStaticProp/cpp/mytestext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/ConstStaticProp/cpp/mytestext.cpp -------------------------------------------------------------------------------- /Examples/ConstStaticProp/cpp/mytestext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/ConstStaticProp/cpp/mytestext.h -------------------------------------------------------------------------------- /Examples/ConstStaticProp/cpp/mytestext.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/ConstStaticProp/cpp/mytestext.ini -------------------------------------------------------------------------------- /Examples/ConstStaticProp/readme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/ConstStaticProp/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/ConstStaticProp/test.php -------------------------------------------------------------------------------- /Examples/CppClassesInPhp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/CppClassesInPhp/Makefile -------------------------------------------------------------------------------- /Examples/CppClassesInPhp/check_map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/CppClassesInPhp/check_map.php -------------------------------------------------------------------------------- /Examples/CppClassesInPhp/cppclassinphp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/CppClassesInPhp/cppclassinphp.cpp -------------------------------------------------------------------------------- /Examples/CppClassesInPhp/cppclassinphp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/CppClassesInPhp/cppclassinphp.ini -------------------------------------------------------------------------------- /Examples/CppClassesInPhp/cppclassinphp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/CppClassesInPhp/cppclassinphp.php -------------------------------------------------------------------------------- /Examples/CppClassesInPhp/includeMyCustomClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/CppClassesInPhp/includeMyCustomClass.h -------------------------------------------------------------------------------- /Examples/DlUnrestricted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/DlUnrestricted/Makefile -------------------------------------------------------------------------------- /Examples/DlUnrestricted/dlunrestricted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/DlUnrestricted/dlunrestricted.cpp -------------------------------------------------------------------------------- /Examples/DlUnrestricted/dlunrestricted.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/DlUnrestricted/dlunrestricted.ini -------------------------------------------------------------------------------- /Examples/DlUnrestricted/dlunrestricted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/DlUnrestricted/dlunrestricted.php -------------------------------------------------------------------------------- /Examples/EmptyExtension/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/EmptyExtension/Makefile -------------------------------------------------------------------------------- /Examples/EmptyExtension/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/EmptyExtension/main.cpp -------------------------------------------------------------------------------- /Examples/EmptyExtension/yourextension.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/EmptyExtension/yourextension.ini -------------------------------------------------------------------------------- /Examples/Exceptions/ExceptionCatch/30-exceptionCatch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Exceptions/ExceptionCatch/30-exceptionCatch.ini -------------------------------------------------------------------------------- /Examples/Exceptions/ExceptionCatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Exceptions/ExceptionCatch/Makefile -------------------------------------------------------------------------------- /Examples/Exceptions/ExceptionCatch/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Exceptions/ExceptionCatch/exception.php -------------------------------------------------------------------------------- /Examples/Exceptions/ExceptionCatch/exceptionCatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Exceptions/ExceptionCatch/exceptionCatch.cpp -------------------------------------------------------------------------------- /Examples/Exceptions/ExceptionThrow/30-exceptionThrow.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Exceptions/ExceptionThrow/30-exceptionThrow.ini -------------------------------------------------------------------------------- /Examples/Exceptions/ExceptionThrow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Exceptions/ExceptionThrow/Makefile -------------------------------------------------------------------------------- /Examples/Exceptions/ExceptionThrow/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Exceptions/ExceptionThrow/exception.php -------------------------------------------------------------------------------- /Examples/Exceptions/ExceptionThrow/exceptionThrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Exceptions/ExceptionThrow/exceptionThrow.cpp -------------------------------------------------------------------------------- /Examples/Extension/30-phpcpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Extension/30-phpcpp.ini -------------------------------------------------------------------------------- /Examples/Extension/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Extension/Makefile -------------------------------------------------------------------------------- /Examples/Extension/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Extension/extension.cpp -------------------------------------------------------------------------------- /Examples/Extension/extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Extension/extension.php -------------------------------------------------------------------------------- /Examples/FunctionNoParameters/30-functionnoparameters.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionNoParameters/30-functionnoparameters.ini -------------------------------------------------------------------------------- /Examples/FunctionNoParameters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionNoParameters/Makefile -------------------------------------------------------------------------------- /Examples/FunctionNoParameters/functionnoparameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionNoParameters/functionnoparameters.cpp -------------------------------------------------------------------------------- /Examples/FunctionNoParameters/functionnoparameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionNoParameters/functionnoparameters.php -------------------------------------------------------------------------------- /Examples/FunctionReturnValue/30-functionreturnvalue.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionReturnValue/30-functionreturnvalue.ini -------------------------------------------------------------------------------- /Examples/FunctionReturnValue/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionReturnValue/Makefile -------------------------------------------------------------------------------- /Examples/FunctionReturnValue/functionreturnvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionReturnValue/functionreturnvalue.cpp -------------------------------------------------------------------------------- /Examples/FunctionReturnValue/functionreturnvalue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionReturnValue/functionreturnvalue.php -------------------------------------------------------------------------------- /Examples/FunctionVoid/30-functionvoid.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionVoid/30-functionvoid.ini -------------------------------------------------------------------------------- /Examples/FunctionVoid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionVoid/Makefile -------------------------------------------------------------------------------- /Examples/FunctionVoid/functionvoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionVoid/functionvoid.cpp -------------------------------------------------------------------------------- /Examples/FunctionVoid/functionvoid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionVoid/functionvoid.php -------------------------------------------------------------------------------- /Examples/FunctionWithParameters/30-functionwithparameters.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionWithParameters/30-functionwithparameters.ini -------------------------------------------------------------------------------- /Examples/FunctionWithParameters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionWithParameters/Makefile -------------------------------------------------------------------------------- /Examples/FunctionWithParameters/functionwithparameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionWithParameters/functionwithparameters.cpp -------------------------------------------------------------------------------- /Examples/FunctionWithParameters/functionwithparameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/FunctionWithParameters/functionwithparameters.php -------------------------------------------------------------------------------- /Examples/Globals/30-globals.ini: -------------------------------------------------------------------------------- 1 | ; configuration for phpcpp module 2 | ; priority=30 3 | extension=globals.so 4 | 5 | -------------------------------------------------------------------------------- /Examples/Globals/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Globals/Makefile -------------------------------------------------------------------------------- /Examples/Globals/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Globals/globals.cpp -------------------------------------------------------------------------------- /Examples/Globals/globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Globals/globals.php -------------------------------------------------------------------------------- /Examples/IncludeOnce/30-includeonce.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/IncludeOnce/30-includeonce.ini -------------------------------------------------------------------------------- /Examples/IncludeOnce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/IncludeOnce/Makefile -------------------------------------------------------------------------------- /Examples/IncludeOnce/class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/IncludeOnce/class.php -------------------------------------------------------------------------------- /Examples/IncludeOnce/includeonce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/IncludeOnce/includeonce.cpp -------------------------------------------------------------------------------- /Examples/IncludeOnce/includeonce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/IncludeOnce/includeonce.php -------------------------------------------------------------------------------- /Examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/Makefile -------------------------------------------------------------------------------- /Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/README.md -------------------------------------------------------------------------------- /Examples/ReturnObject/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/ReturnObject/Makefile -------------------------------------------------------------------------------- /Examples/ReturnObject/child.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/ReturnObject/child.h -------------------------------------------------------------------------------- /Examples/ReturnObject/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/ReturnObject/main.cpp -------------------------------------------------------------------------------- /Examples/ReturnObject/master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/ReturnObject/master.h -------------------------------------------------------------------------------- /Examples/ReturnObject/returnobject.ini: -------------------------------------------------------------------------------- 1 | extension=returnobject.so 2 | -------------------------------------------------------------------------------- /Examples/ReturnObject/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/ReturnObject/test.php -------------------------------------------------------------------------------- /Examples/simple/30-phpcpp.ini: -------------------------------------------------------------------------------- 1 | ; configuration for phpcpp module 2 | ; priority=30 3 | extension=simple.so 4 | 5 | -------------------------------------------------------------------------------- /Examples/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/simple/Makefile -------------------------------------------------------------------------------- /Examples/simple/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/simple/simple.cpp -------------------------------------------------------------------------------- /Examples/simple/simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Examples/simple/simple.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/README.md -------------------------------------------------------------------------------- /common/extensionbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/common/extensionbase.h -------------------------------------------------------------------------------- /common/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/common/includes.h -------------------------------------------------------------------------------- /common/modifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/common/modifiers.cpp -------------------------------------------------------------------------------- /common/streambuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/common/streambuf.cpp -------------------------------------------------------------------------------- /common/streambuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/common/streambuf.h -------------------------------------------------------------------------------- /documentation/bubblesort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/bubblesort.html -------------------------------------------------------------------------------- /documentation/calling-functions-and-methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/calling-functions-and-methods.html -------------------------------------------------------------------------------- /documentation/classes-and-objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/classes-and-objects.html -------------------------------------------------------------------------------- /documentation/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/constants.html -------------------------------------------------------------------------------- /documentation/constructors-and-destructors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/constructors-and-destructors.html -------------------------------------------------------------------------------- /documentation/dynamic-loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/dynamic-loading.html -------------------------------------------------------------------------------- /documentation/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/exceptions.html -------------------------------------------------------------------------------- /documentation/extension-callbacks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/extension-callbacks.html -------------------------------------------------------------------------------- /documentation/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/functions.html -------------------------------------------------------------------------------- /documentation/inheritance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/inheritance.html -------------------------------------------------------------------------------- /documentation/ini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/ini.html -------------------------------------------------------------------------------- /documentation/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/install.html -------------------------------------------------------------------------------- /documentation/lambda-functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/lambda-functions.html -------------------------------------------------------------------------------- /documentation/loading-extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/loading-extensions.html -------------------------------------------------------------------------------- /documentation/magic-interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/magic-interfaces.html -------------------------------------------------------------------------------- /documentation/magic-methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/magic-methods.html -------------------------------------------------------------------------------- /documentation/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/namespaces.html -------------------------------------------------------------------------------- /documentation/output-and-errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/output-and-errors.html -------------------------------------------------------------------------------- /documentation/parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/parameters.html -------------------------------------------------------------------------------- /documentation/properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/properties.html -------------------------------------------------------------------------------- /documentation/special-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/special-features.html -------------------------------------------------------------------------------- /documentation/ten-reasons-for-using-php-cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/ten-reasons-for-using-php-cpp.html -------------------------------------------------------------------------------- /documentation/variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/variables.html -------------------------------------------------------------------------------- /documentation/your-first-extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/documentation/your-first-extension.html -------------------------------------------------------------------------------- /include/argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/argument.h -------------------------------------------------------------------------------- /include/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/array.h -------------------------------------------------------------------------------- /include/arrayaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/arrayaccess.h -------------------------------------------------------------------------------- /include/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/base.h -------------------------------------------------------------------------------- /include/byref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/byref.h -------------------------------------------------------------------------------- /include/byval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/byval.h -------------------------------------------------------------------------------- /include/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/call.h -------------------------------------------------------------------------------- /include/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/class.h -------------------------------------------------------------------------------- /include/classbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/classbase.h -------------------------------------------------------------------------------- /include/classtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/classtype.h -------------------------------------------------------------------------------- /include/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/constant.h -------------------------------------------------------------------------------- /include/countable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/countable.h -------------------------------------------------------------------------------- /include/deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/deprecated.h -------------------------------------------------------------------------------- /include/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/error.h -------------------------------------------------------------------------------- /include/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/exception.h -------------------------------------------------------------------------------- /include/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/extension.h -------------------------------------------------------------------------------- /include/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/file.h -------------------------------------------------------------------------------- /include/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/function.h -------------------------------------------------------------------------------- /include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/global.h -------------------------------------------------------------------------------- /include/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/globals.h -------------------------------------------------------------------------------- /include/hashmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/hashmember.h -------------------------------------------------------------------------------- /include/hashparent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/hashparent.h -------------------------------------------------------------------------------- /include/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/ini.h -------------------------------------------------------------------------------- /include/inivalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/inivalue.h -------------------------------------------------------------------------------- /include/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/interface.h -------------------------------------------------------------------------------- /include/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/iterator.h -------------------------------------------------------------------------------- /include/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/message.h -------------------------------------------------------------------------------- /include/modifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/modifiers.h -------------------------------------------------------------------------------- /include/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/namespace.h -------------------------------------------------------------------------------- /include/noexcept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/noexcept.h -------------------------------------------------------------------------------- /include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/object.h -------------------------------------------------------------------------------- /include/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/parameters.h -------------------------------------------------------------------------------- /include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/platform.h -------------------------------------------------------------------------------- /include/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/script.h -------------------------------------------------------------------------------- /include/serializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/serializable.h -------------------------------------------------------------------------------- /include/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/stream.h -------------------------------------------------------------------------------- /include/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/streams.h -------------------------------------------------------------------------------- /include/super.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/super.h -------------------------------------------------------------------------------- /include/thread_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/thread_local.h -------------------------------------------------------------------------------- /include/throwable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/throwable.h -------------------------------------------------------------------------------- /include/traversable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/traversable.h -------------------------------------------------------------------------------- /include/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/type.h -------------------------------------------------------------------------------- /include/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/value.h -------------------------------------------------------------------------------- /include/valueiterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/valueiterator.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/version.h -------------------------------------------------------------------------------- /include/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/visibility.h -------------------------------------------------------------------------------- /include/zendcallable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/zendcallable.h -------------------------------------------------------------------------------- /include/zval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/include/zval.h -------------------------------------------------------------------------------- /phpcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/phpcpp.h -------------------------------------------------------------------------------- /zend/arithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/arithmetic.h -------------------------------------------------------------------------------- /zend/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/base.cpp -------------------------------------------------------------------------------- /zend/boolmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/boolmember.h -------------------------------------------------------------------------------- /zend/callable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/callable.cpp -------------------------------------------------------------------------------- /zend/callable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/callable.h -------------------------------------------------------------------------------- /zend/classbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/classbase.cpp -------------------------------------------------------------------------------- /zend/classimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/classimpl.cpp -------------------------------------------------------------------------------- /zend/classimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/classimpl.h -------------------------------------------------------------------------------- /zend/classtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/classtype.h -------------------------------------------------------------------------------- /zend/compileroptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/compileroptions.h -------------------------------------------------------------------------------- /zend/constant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/constant.cpp -------------------------------------------------------------------------------- /zend/constantfuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/constantfuncs.cpp -------------------------------------------------------------------------------- /zend/constantimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/constantimpl.h -------------------------------------------------------------------------------- /zend/delayedfree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/delayedfree.h -------------------------------------------------------------------------------- /zend/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/error.cpp -------------------------------------------------------------------------------- /zend/eval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/eval.cpp -------------------------------------------------------------------------------- /zend/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/exception.cpp -------------------------------------------------------------------------------- /zend/exception_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/exception_handler.cpp -------------------------------------------------------------------------------- /zend/execarguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/execarguments.h -------------------------------------------------------------------------------- /zend/executestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/executestate.h -------------------------------------------------------------------------------- /zend/exists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/exists.cpp -------------------------------------------------------------------------------- /zend/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/extension.cpp -------------------------------------------------------------------------------- /zend/extensionimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/extensionimpl.cpp -------------------------------------------------------------------------------- /zend/extensionimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/extensionimpl.h -------------------------------------------------------------------------------- /zend/extensionpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/extensionpath.h -------------------------------------------------------------------------------- /zend/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/file.cpp -------------------------------------------------------------------------------- /zend/floatmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/floatmember.h -------------------------------------------------------------------------------- /zend/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/function.cpp -------------------------------------------------------------------------------- /zend/functor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/functor.cpp -------------------------------------------------------------------------------- /zend/functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/functor.h -------------------------------------------------------------------------------- /zend/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/global.cpp -------------------------------------------------------------------------------- /zend/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/globals.cpp -------------------------------------------------------------------------------- /zend/hashiterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/hashiterator.h -------------------------------------------------------------------------------- /zend/hashmember.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/hashmember.cpp -------------------------------------------------------------------------------- /zend/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/includes.h -------------------------------------------------------------------------------- /zend/ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/ini.cpp -------------------------------------------------------------------------------- /zend/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/init.h -------------------------------------------------------------------------------- /zend/inivalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/inivalue.cpp -------------------------------------------------------------------------------- /zend/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/interface.cpp -------------------------------------------------------------------------------- /zend/invaliditerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/invaliditerator.h -------------------------------------------------------------------------------- /zend/iteratorimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/iteratorimpl.cpp -------------------------------------------------------------------------------- /zend/iteratorimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/iteratorimpl.h -------------------------------------------------------------------------------- /zend/lowercase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/lowercase.h -------------------------------------------------------------------------------- /zend/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/macros.h -------------------------------------------------------------------------------- /zend/member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/member.h -------------------------------------------------------------------------------- /zend/members.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/members.cpp -------------------------------------------------------------------------------- /zend/method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/method.h -------------------------------------------------------------------------------- /zend/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/module.cpp -------------------------------------------------------------------------------- /zend/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/module.h -------------------------------------------------------------------------------- /zend/namespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/namespace.cpp -------------------------------------------------------------------------------- /zend/nativefunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/nativefunction.h -------------------------------------------------------------------------------- /zend/notimplemented.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/notimplemented.h -------------------------------------------------------------------------------- /zend/nullmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/nullmember.h -------------------------------------------------------------------------------- /zend/numericmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/numericmember.h -------------------------------------------------------------------------------- /zend/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/object.cpp -------------------------------------------------------------------------------- /zend/objectimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/objectimpl.h -------------------------------------------------------------------------------- /zend/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/opcodes.h -------------------------------------------------------------------------------- /zend/parametersimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/parametersimpl.h -------------------------------------------------------------------------------- /zend/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/property.h -------------------------------------------------------------------------------- /zend/rethrowable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/rethrowable.h -------------------------------------------------------------------------------- /zend/sapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/sapi.cpp -------------------------------------------------------------------------------- /zend/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/script.cpp -------------------------------------------------------------------------------- /zend/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/state.h -------------------------------------------------------------------------------- /zend/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/stream.cpp -------------------------------------------------------------------------------- /zend/streambuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/streambuf.cpp -------------------------------------------------------------------------------- /zend/streams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/streams.cpp -------------------------------------------------------------------------------- /zend/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/string.h -------------------------------------------------------------------------------- /zend/stringmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/stringmember.h -------------------------------------------------------------------------------- /zend/super.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/super.cpp -------------------------------------------------------------------------------- /zend/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/symbol.h -------------------------------------------------------------------------------- /zend/throwable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/throwable.cpp -------------------------------------------------------------------------------- /zend/traverseiterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/traverseiterator.h -------------------------------------------------------------------------------- /zend/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/value.cpp -------------------------------------------------------------------------------- /zend/valueiterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/valueiterator.cpp -------------------------------------------------------------------------------- /zend/valueiteratorimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/valueiteratorimpl.h -------------------------------------------------------------------------------- /zend/zendcallable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/zendcallable.cpp -------------------------------------------------------------------------------- /zend/zval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/PHP-CPP/HEAD/zend/zval.cpp --------------------------------------------------------------------------------