MCPcopy Create free account

hub / github.com/CopernicaMarketingSoftware/PHP-CPP / functions

Functions586 in github.com/CopernicaMarketingSoftware/PHP-CPP

Methoddeclare
* Virtual method to declare the property * @param entry Class entry' */
zend/floatmember.h:54
Methoddeclare
* Virtual method to declare the property * @param entry Class entry */
zend/numericmember.h:54
Methoddeclare
* Virtual method to declare the property * @param entry Class entry */
zend/nullmember.h:46
Methoddecrement
* Decrement position (pre-decrement) * @return bool */
zend/traverseiterator.h:101
Methoddecrement
* Decrement position (pre-decrement) * @return bool */
zend/invaliditerator.h:45
Functiondefine
* Define a new constant * @param name Name of the constant * @param size Size of the name * @param value Val
zend/constantfuncs.cpp:68
Functiondefined
* Check whether a constant exists * @param name * @param size * @return bool */
zend/constantfuncs.cpp:144
FunctionderivedFrom
include/value.h:1115
MethoddestructObject
* Function that is called when an object is about to be destructed * This will call the magic __destruct method * @param object */
zend/classimpl.cpp:1227
Methoddestructor
* Iterator destructor method * @param iter */
zend/iteratorimpl.cpp:58
Functiondl
include/call.h:31
Functiondl_unrestricted
* Function to load every possible extension by pathname * * It takes one argument: the filename of the PHP extension, and returns a * boolean t
Examples/DlUnrestricted/dlunrestricted.cpp:27
Functionecho
include/call.h:95
Functionencoded
* The internal classname, with the encoding whether it is nullable * @return const char * */
include/argument.h:109
Functionend
* Return an iterator for iterating over the variables * @return iterator */
include/super.h:86
Methodentries
* Retrieve an array of zend_function_entry objects that hold the * properties for each method. This method is called at extension * startup time
zend/classimpl.cpp:1482
Methodentry
* The class-entry * @return zend_class_entry */
zend/classimpl.h:171
Methodentry
* Get the functor class entry * @return zend_class_entry */
zend/functor.h:53
Methodequals
* Compare with other iterator * @param that * @return bool */
zend/traverseiterator.h:115
Methodequals
* Compare with other iterator * @param that * @return bool */
zend/invaliditerator.h:55
Functionerror_reporting
* Return the current error reporting leven */
zend/exception_handler.cpp:72
Functioneval
* Evaluate a PHP string * @param phpCode The PHP code to evaluate * @return Value The result of the evaluation */
zend/eval.cpp:24
Functioneval
include/call.h:34
Methodexec
* Call function with a number of parameters * @param argc Number of parameters * @param argv The parameters * @return Value */
zend/value.cpp:939
Methodexecute
* Execute the opcodes * @return Value */
zend/opcodes.h:62
Methodexecute
* Execute the script * The return value of the script is returned * @return Value */
zend/script.cpp:85
Methodextends
* Set the base class * @param base The base class */
zend/classimpl.h:503
Methodextends
* Set the base class * @param base Php::Class object that is the base */
zend/classbase.cpp:144
Methodfd
* Get access to the internal filedescriptor * Note that not every stream is always associated with a filedescriptor, * in which case this functio
zend/stream.cpp:56
Methodfill
* Private helper method to fill an argument object * @param info object from the zend engine * @param arg original objec
zend/callable.h:177
Methodfn
($a)
Examples/CppClassesInPhp/check_map.php:30
MethodfreeObject
* Function that is called to clean up space that is occupied by the object * @param object The object to be deallocated */
zend/classimpl.cpp:1259
Methodfunctions
* Get access to all iterator functions * @return zend_object_iterator_funcs */
zend/iteratorimpl.cpp:154
Functionget
* Retrieve the value at a string index * @param key * @return Value */
include/hashmember.h:419
Methodget
* Get the property * @param base Object to call it on * @return Value */
zend/property.h:134
MethodgetClassName
* Get the classname, given an object * @param object * @return zend_string* */
zend/classimpl.cpp:584
MethodgetClosure
zend/classimpl.cpp:313
MethodgetIterator
* Function to create a new iterator to iterate over an object * @param entry The class entry * @param object
zend/classimpl.cpp:1301
MethodgetMemberVar
()
Examples/FunctionWithParameters/functionwithparameters.php:21
MethodgetMethod
* Method that returns the function definition of the __call function * * @param object Pointer to the object from which we want to retrieve
zend/classimpl.cpp:197
MethodgetStaticMethod
* Method that is called right before a static method call is attempted * * @param entry The class entry to find the static function in *
zend/classimpl.cpp:261
Functionget_module
* Function that is called by PHP right after the PHP process * has started, and that returns an address of an internal PHP * strucure wit
Examples/ReturnObject/main.cpp:17
Functionget_module
export the "get_module" function that will be called by the Zend engine
Examples/IncludeOnce/includeonce.cpp:37
Functionget_module
export the "get_module" function that will be called by the Zend engine
Examples/FunctionVoid/functionvoid.cpp:32
Functionget_module
export the "get_module" function that will be called by the Zend engine
Examples/Globals/globals.cpp:55
Functionget_module
export the "get_module" function that will be called by the Zend engine
Examples/ConstStaticProp/cpp/mytestext.cpp:32
Functionget_module
* Function that is called by PHP right after the PHP process * has started, and that returns an address of an internal PHP * strucure wit
Examples/EmptyExtension/main.cpp:15
Functionget_module
export the "get_module" function that will be called by the Zend engine
Examples/FunctionReturnValue/functionreturnvalue.cpp:32
Functionget_module
export the "get_module" function that will be called by the Zend engine
Examples/CppClassesInPhp/cppclassinphp.cpp:115
Functionget_module
export the "get_module" function that will be called by the Zend engine
Examples/CallPhpFunctions/callphpfunction.cpp:39
Functionget_module
export the "get_module" function that will be called by the Zend engine
Examples/FunctionNoParameters/functionnoparameters.cpp:32
Functionget_module
export the "get_module" function that will be called by the Zend engine
Examples/FunctionWithParameters/functionwithparameters.cpp:92
Functionget_module
export the "get_module" function that will be called by the Zend engine
Examples/Extension/extension.cpp:19
Functionget_module
export the "get_module" function that will be called by the Zend engine
Examples/Exceptions/ExceptionThrow/exceptionThrow.cpp:34
Functionget_module
export the "get_module" function that will be called by the Zend engine
Examples/Exceptions/ExceptionCatch/exceptionCatch.cpp:53
Functionget_module
* Startup function that is called by the Zend engine * to retrieve all information about the extension * @return void* */
Examples/DlUnrestricted/dlunrestricted.cpp:49
Methodhandle
* Handle throwables * @param throwable The object to handle */
zend/zendcallable.cpp:76
MethodhasDimension
* Function that is called when the object is used as an array in PHP * * This is the [] operator in PHP, and mapped to the offsetExists() method
zend/classimpl.cpp:800
MethodhasMethod
* Helper method to check if a function is registered for this instance * @param name name of the function to check for * @return bool
zend/classimpl.cpp:1466
MethodhasProperty
* Function that is called to check whether a certain property is set * for an object * * This is the handler for the __isset() function, and is
zend/classimpl.cpp:1112
Functionimplementation
include/value.h:1078
Methodimplementation
* Internal method that returns the implementation object * @return zend_object_iterator */
zend/iteratorimpl.h:185
Methodimplements
* Add an interface that is implemented * @param interface The interface that is implemented */
zend/classimpl.h:497
Methodimplements
* Add an interface * @param interface Interface object */
zend/classbase.cpp:138
Functioninclude
* Include a file * @param filename * @return Value */
zend/eval.cpp:35
Functioninclude
include/call.h:36
Functioninclude_once
include/call.h:38
Methodincrement
* Increment position (pre-increment) * @return bool */
zend/traverseiterator.h:82
Methodincrement
* Increment position (pre-increment) * @return bool */
zend/invaliditerator.h:36
MethodiniVariables
* The total number of php.ini variables * @return size_t */
zend/extension.cpp:140
MethodiniVariables
* The total number of php.ini variables * @return size_t */
zend/extensionimpl.cpp:459
Functionini_get
* The 'ini_get' function returns an IniValue, so that it can also be used * before the PHP engine is started. */
include/call.h:110
Functionini_get_orig
include/call.h:111
Functioninit_globals
zend/extensionimpl.cpp:37
Methodinitialize
* Internal method to fill a function entry * @param zend_function_entry * @param classname */
zend/method.h:71
Methodinitialize
* Initialize the member * @param zend_class_entry */
zend/member.h:37
Methodinitialize
* Initialize the class */
zend/functor.cpp:29
Methodinitialize
* Fill a function entry * @param prefix Active namespace prefix * @param entry Entry to be filled */
zend/nativefunction.h:78
Methodinitialize
* Initialize the constant * @param prefix Namespace prefix * @param module_number The module number */
zend/constantimpl.h:178
Methodinitialize
* Fill a function entry * * This method is called when the extension is registering itself, when the * function or method introduces himself *
zend/callable.cpp:89
Methodinstance
* Retrieve pointer to the object * * @param execute_data The current execution scope * @return Pointer (as void because this cannot be templ
zend/zendcallable.cpp:23
Methodinstanceof
* Helper method to check if a zend-class is an instance of a certain class * @param entry the class entry to check * @param requi
zend/state.h:37
Methodinstantiate
* Internal method to instantiate an object * @param name Name of the class to instantiate * @return bool True if there is a __cons
zend/object.cpp:104
Methodinvalidate
* Invalidate the current variable */
zend/iteratorimpl.h:100
Methodinvalidate
* Invalidate the object - so that it will not be destructed */
zend/value.cpp:335
Methodinvalidate
* Invalidate the object * @return bool */
zend/traverseiterator.h:195
Methodinvalidate
* Invalidate the current value of the object * @param iter */
zend/iteratorimpl.cpp:144
Methodinvalidate
* Invalidate the iterator * @return bool */
zend/hashiterator.h:221
Functioninvoke
include/zendcallable.h:107
Methodinvoke
* Invoke the method * @param parameters * @return Value */
zend/method.h:86
Methodinvoke
* Method that gets called every time the function is executed * @param params The parameters that were passed * @return Variable
zend/nativefunction.h:62
Methodinvoke
* Function that is called by the Zend engine every time that a function gets called * @param ht * @param return_value * @param return_value_
zend/callable.cpp:25
MethodisBool
* Are we a boolean? This will also check if we're a reference to a boolean * @return bool */
zend/value.cpp:1059
MethodisObject
* Are we an object? This will also check if we're a reference to an object * @return bool */
zend/value.cpp:1111
MethodisReference
* Are we a reference? * @return bool */
zend/value.cpp:1101
FunctionisScalar
include/value.h:421
Functionis_a
include/call.h:39
Functionis_array
include/call.h:100
Functionis_subclass_of
include/call.h:42
Methoditerate
* Iterate over key value pairs * @param callback */
zend/value.cpp:1525
← previousnext →301–400 of 586, ranked by callers