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
zend_symtable_str_add
The absence of this API requires a self-implemented solution, which should be provided by Zend_API.h.
static zend_always_inline zval *zend_symtable_str_add(HashTable *ht, const char *str, size_t len, zval *pData) { zend_ulong idx; if (ZEND_HANDLE_NUMERIC_STR(str, len, idx)) { return zend_hash_index_add(ht, idx, pData); } else { return zend_hash_str_add(ht, str, len, pData); } }
The text was updated successfully, but these errors were encountered:
Why not just submit a PR? I don't see any reason not to have it, but opening an issue doesn't seem to do much?
Sorry, something went wrong.
Please send a PR, this issue on its own won't do anything.
No branches or pull requests
Description
The absence of this API requires a self-implemented solution, which should be provided by Zend_API.h.
The text was updated successfully, but these errors were encountered: