We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
看了下5.5,声明变了:
ZEND_API int _zend_hash_add_or_update(HashTable *ht, const char *arKey, uint nKeyLength, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC); #define zend_hash_update(ht, arKey, nKeyLength, pData, nDataSize, pDest) \ _zend_hash_add_or_update(ht, arKey, nKeyLength, pData, nDataSize, pDest, HASH_UPDATE ZEND_FILE_LINE_CC) #define zend_hash_add(ht, arKey, nKeyLength, pData, nDataSize, pDest) \ _zend_hash_add_or_update(ht, arKey, nKeyLength, pData, nDataSize, pDest, HASH_ADD ZEND_FILE_LINE_CC)
是我漏了哪些东西吗?
The text was updated successfully, but these errors were encountered:
应该是以5.3.6为例讲解的吧
Sorry, something went wrong.
是的,以5.3.6为例。
2016-08-03 11:49 GMT+08:00 gang liu [email protected]:
应该是以5.3.6为例讲解的吧 — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub #120 (comment), or mute the thread https://github.com/notifications/unsubscribe-auth/AAm6IkvsDnAZ2Tt8b0zEdA-8Ys8YBDvWks5qcA_GgaJpZM4F-Giv .
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub #120 (comment), or mute the thread https://github.com/notifications/unsubscribe-auth/AAm6IkvsDnAZ2Tt8b0zEdA-8Ys8YBDvWks5qcA_GgaJpZM4F-Giv .
Mingqiang
No branches or pull requests
看了下5.5,声明变了:
是我漏了哪些东西吗?
The text was updated successfully, but these errors were encountered: