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.
我正在使用狮身人面像 0.9.8 版本。我的 php 版本是 5.3.1。在集成 sphinx api 后,我收到了一些关于 assert() 的警告。我该如何解决这个问题?任何机构可以帮助我?
谢谢
好吧..如果作为参数它需要一个整数,那么将您的代码编写为:
$sphinx->method((int) $param1);
编辑:真实示例:
$src = new SphinxClient(); $src->SetServer('127.0.0.1', 9393); $src->SetLimits((int) $offset, (int) $per_page);
现在看到了吗?