赞普。 PHP脚本显示空白页!
php 脚本调用四个函数来抓取不同网站的数据。
$returnData[0]=getWebsite1Data($description);
$returnData[1]=getWebsite2Data($description);
$returnData[2]=getWebsite3Data($description);
$returnData[3]=getWebsite4Data($description);
如果我禁用对任何一个随机函数的调用,该脚本将正确显示网页。
这让我认为这是一个资源问题。如果是资源问题,我该如何在 Xampp 中纠正它。我尝试过取消设置变量,但这也不起作用。
The php script is calling four functions that scrape different websites for data.
$returnData[0]=getWebsite1Data($description);
$returnData[1]=getWebsite2Data($description);
$returnData[2]=getWebsite3Data($description);
$returnData[3]=getWebsite4Data($description);
The script displays the web-page correctly if I disable the call to any one random function.
That makes me think its a resource problem. If it is a resource problem how do I correct it in Xampp. I've tried unsetting the variables but that didn't work either.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保 php.ini 中的错误报告设置足够高
Make sure Error Reporting is set high enough in php.ini
检查你的 phpinfo 并查看你的“内存限制”是多少。尝试在 php.ini 中将其加倍。
Check your phpinfo and see what your "memory_limit" is. Try doubling it in your php.ini.