PHP: I get a completely blank page, I don#39;t know how to debug this in PHP(PHP:我得到一个完全空白的页面,我不知道如何在 PHP 中调试它)
问题描述
我在 php 中调试时遇到了一些问题.当我包含这一行时:
I'm having some issues to debug this in php. When I include this line:
require_once("http://" . $_SERVER["HTTP_HOST"] . "/dompdf/dompdf_config.inc.php");
我得到的只是一个空白页面,我没有得到任何 html 代码作为响应.也许错误消息被隐藏了?
what I get is just a blank page, I don't get any html code as response. Maybe the error messages are hidden ?
推荐答案
您不应该像这样要求/包含远程文件.而是提供本地绝对或相对路径.
You should not require/include a remote file like this. Instead provide the local absolute or relative path.
虽然不安全且不推荐,但如果设置了某些配置选项,从技术上讲是可行的.(allow_url_include)
Though insecure and not recommended, it is technically possible to do if certain configuration options are set. (allow_url_include)
请参阅下面有关 display_errors 的其他答案,以了解未来的调试问题.我经常使用 PHP 命令行解释器来获取真正的错误,而不允许将错误详细信息呈现给 Web 访问者.
See other answers below regarding display_errors for future debugging concerns. I often use the PHP command line interpreter to get the real error, without allowing error details to be presented to web visitors.
这篇关于PHP:我得到一个完全空白的页面,我不知道如何在 PHP 中调试它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP:我得到一个完全空白的页面,我不知道如何在 PHP 中调试它
基础教程推荐
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01