Posted by Chung Leong on 10/25/18 11:52
pek wrote:
> I want to create an application that will scan a series of .php files,
> look the functions availiable in them, and display which extensions it
> is using (don't know how to avoid user made conflicted name functions).
>
> Is there a table which has the name of the extension and the functions
> included in the particular extension..?
> Is there a way that I can get a new list if an extension upgrades and
> adds new functions..?
> And what about PEAR..? I don't really know how it works, but I think it
> adds some functions too. Can I do the same with the php extensions..?
>
> Sorry for the trouble.
> Thanks to anyone that helps in advance.
>
> pek
You can extract the info using get_loaded_extensions() and
get_extension_funcs().
[Back to original message]
|