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.
我正在调试我的网站,我想在当前 html 页面和文件之间切换 fwrite() 的目标。我试过 fopen("php://stdout", "w"),但没有用。
有没有办法启用这个?我不想将 fwrite 的每一行更改为 echo 并在完成调试时将其更改回来。我是 PHP 新手,在 google 之后没有找到合适的解决方案。
php://output php://outputprint()是一个只写流,允许您以与和相同的方式写入输出缓冲区机制echo()。 http://php.net/manual/en/wrappers.php.php
php://output
php://outputprint()是一个只写流,允许您以与和相同的方式写入输出缓冲区机制echo()。
print()
echo()
http://php.net/manual/en/wrappers.php.php