我在行CGImageRef cgImage = [oldImage CGImageForProposedRect:nil context:context hints:nil];
size_t width = CGImageGetWidth(cgImage);
size_t height = CGImageGetHeight(cgImage);
上面临一个奇怪的意外分配错误代码的输出总是FALSE所以我无法查询我的数据库。我不确定为什么会这样。我该如何解决?
提前致谢:)
if ($row = $result->fetch_array(MYSQLI_ASSOC)){
答案 0 :(得分:0)
说到赋值错误,此表达式中没有赋值错误。
当没有[更多]结果要提取时, fetch_array()
会返回null
。
说到您的特定问题,请检查您的查询,数据库凭据,拼写错误等。然后仔细检查。
此外,不相关但比这个简单错误更重要:How can I prevent SQL-injection in PHP?
另外,请记住mysqli or die, does it have to die?