Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于某种原因mysqli$query -> fetch();返回空白,我的mysql表中的longtext列?
$query -> fetch();
有任何想法吗?我将列设置为text,它工作正常。它在我的 WAMP 服务器上也可以正常工作,但是当我将它放到生产服务器上时,它只会返回空白。两个系统都运行 php 5.3.5
text
您是否尝试过使用$mysqli->query()and $result->fetch_object()?
$mysqli->query()
$result->fetch_object()
同样的问题?