Hi,
I'm developing a web app using php4delphi as extension builder. I wrote a lot of extensions to separate logically the app. Now I would like to write some extensions that keep generic function that I would like to call from inside other extensions.
So that's the question: is there a way to call an extension function from inside another one?
TIA,
Paolo
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
PHP extensions export function get_module with type Pzend_module_entry.
Pzend_module_entry.functions is a list of the functions implemented in the module.
At the same time it's a strange way to call it. Maybe you can declare your generic function
as an standard exported function from DLL and declare it as external in other extensions.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I'm developing a web app using php4delphi as extension builder. I wrote a lot of extensions to separate logically the app. Now I would like to write some extensions that keep generic function that I would like to call from inside other extensions.
So that's the question: is there a way to call an extension function from inside another one?
TIA,
Paolo
Hi,
PHP extensions export function get_module with type Pzend_module_entry.
Pzend_module_entry.functions is a list of the functions implemented in the module.
At the same time it's a strange way to call it. Maybe you can declare your generic function
as an standard exported function from DLL and declare it as external in other extensions.