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
Example:
function myfunc(data) end
$data = [ 'key1' => 'value1', ]; $link = &$data['key1']; $tarantool->call('myfunc', [$data]);
Problem: Inside lua-function 'myfunc' i see that data['key1'] is null (cdata<void *>: NULL).
Expected behaviour: data['key1'] must be 'value1' in lua-function.
The text was updated successfully, but these errors were encountered:
Move tools to utils.{c,h} + fix bug with reference encoding
cef8afe
closes gh-93
This bug was due to new type in PHP7 - "IS_REFERENCE". It must be fixed now on branch php7-v2. Thanks for your patience.
php7-v2
Sorry, something went wrong.
bigbes
No branches or pull requests
Example:
Problem:
Inside lua-function 'myfunc' i see that data['key1'] is null (cdata<void *>: NULL).
Expected behaviour:
data['key1'] must be 'value1' in lua-function.
The text was updated successfully, but these errors were encountered: