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
因为最近项目需要使用SQLite库,所以我做了一版基于SQLite的程序,在使用中发现,部分读库操作会产生无法获取获取数据的情况,仔细排查发现是在Pdo类的getFields方法中,遍历结果时,使用了
$name= strtolower(isset($val['field'])?$val['field']:$val['name']);
这一句,导致所有字段名被改写为小写,我不大清楚此处予以何为? 删除strtolower后,基本很多操作就正常了。请问有什么隐患之类的么?
The text was updated successfully, but these errors were encountered:
Merge pull request #3 from liu21st/master
1da1304
merge
No branches or pull requests
因为最近项目需要使用SQLite库,所以我做了一版基于SQLite的程序,在使用中发现,部分读库操作会产生无法获取获取数据的情况,仔细排查发现是在Pdo类的getFields方法中,遍历结果时,使用了
这一句,导致所有字段名被改写为小写,我不大清楚此处予以何为?
删除strtolower后,基本很多操作就正常了。请问有什么隐患之类的么?
The text was updated successfully, but these errors were encountered: