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
I got an error when i used where not in function:
A PHP Error was encountered Severity: Warning Message: Illegal string offset '$nin' Filename: cimongo/Cimongo.php Line Number: 177
Solution: i changed the line no 177 $this->wheres[$field]['$nin'] = $in; to $this->wheres[$field] = array('$nin'=>$in);
Then the issue has been re-solved. i am posting this because i want know it is right or not ?
The text was updated successfully, but these errors were encountered:
yep, pull req is welcome
Sorry, something went wrong.
so you want me to edit the file and send the pull request ? Sorry i am new bee to github...
yes, make some test before. let me know
No branches or pull requests
I got an error when i used where not in function:
A PHP Error was encountered
Severity: Warning
Message: Illegal string offset '$nin'
Filename: cimongo/Cimongo.php
Line Number: 177
Solution: i changed the line no 177
$this->wheres[$field]['$nin'] = $in;
to
$this->wheres[$field] = array('$nin'=>$in);
Then the issue has been re-solved.
i am posting this because i want know it is right or not ?
The text was updated successfully, but these errors were encountered: