Bug #74293 [Opn]: Order of extensions loaded in php.ini affects function calls
[email protected] ("yukiw at simba dot com")
| Newsgroups | php.bugs |
|---|---|
| Message-ID | <[email protected]> |
Edit report at https://bugs.php.net/bug.php?id=74293&edit=1
ID: 74293
User updated by: yukiw at simba dot com
Reported by: yukiw at simba dot com
Summary: Order of extensions loaded in php.ini affects
function calls
Status: Open
Type: Bug
Package: Dynamic loading
Operating System: Darwin
PHP Version: 7.1.3
Block user comment: N
Private report: N
New Comment:
he C functions that my extension defines
Previous Comments:
------------------------------------------------------------------------
[2017-03-22 19:42:28] [email protected]
When you say "function", are you referring to PHP functions registered by your extension, or to C functions that your extension defines?
------------------------------------------------------------------------
[2017-03-22 19:38:27] yukiw at simba dot com
Description:
------------
This only happens in Mac (I've tested it on Sierra and Al Capital, but I'm not sure if older Mac OS versions have this problem. But Windows and Linux (Ubuntu and CentOS) don't seem to have this problem.
I have two extensions and they have a few common function names. When I use these extensions in Windows or Linux, the order in which I put them in php.ini doesn't matter. However, when I use the extensions on Mac, the function that is in the first loaded extension is always called. For example, I have extension A and B. When I'm using API's from B, I would expect the function in B to be called. However, if I loaded A before B in php.ini, the function of the same name in A is called.
For now I have managed to have a workaround for it by changing the function names / putting them into their own namespace. However, I am concerned that what if some other extension that's not created by me also have the same function names as the ones in my extensions and some user load that extension before mine.
Expected result:
----------------
I expect to see the order of which I load the extensions do not affect which function of the common name is called.
Actual result:
--------------
The function of the extension that is loaded first is executed.
------------------------------------------------------------------------
--
Edit this bug report at https://bugs.php.net/bug.php?id=74293&edit=1