为了账号安全,请及时绑定邮箱和手机立即绑定

在 PHP 中整齐地显示命令提示符的输出

在 PHP 中整齐地显示命令提示符的输出

PHP
海绵宝宝撒 2023-10-01 17:07:21
我希望在命令提示符中运行一些命令后,整齐地显示 python 文件的输出。目前,我的 PHP 代码的一部分如下所示:$output2 = shell_exec('python amassprocess.py 2>&1' . $asnum);echo $output2它基本上将用户输入发送到 python 文件 amassprocess.py 并使用用户输入运行该文件。amassprocess.py 文件目前如下所示:import os, sys#asnum = sys.argv[1]asnum = "46489"print("Here is a list of top level seed domain related to the AS Number provided:")topdomain = os.system('cmd /c "amass.exe intel -asn {}"'.format(asnum))for i in topdomain:    print(i)    print("<br>")PS:忽略2个asnum,其中一个用于测试运行 python 脚本的结果输出如下:Here is a list of top level seed domain related to the AS Number provided:ttvnw.netjustin.tvtwitch.tvsocialcam.comTraceback (most recent call last):  File "z:/xampp/htdocs/majorproject/amassprocess.py", line 8, in <module>    for i in topdomain:TypeError: 'int' object is not iterable但是,我希望运行 python 脚本时的输出如下:Here is a list of top level seed domain related to the AS Number provided:ttvnw.net<br>justin.tv<br>twitch.tv<br>socialcam.com这样当它在 PHP 中显示时,它看起来像这样:Here is a list of top level seed domain related to the AS Number provided:ttvnw.netjustin.tvtwitch.tvsocialcam.com目前在 PHP 中,结果都只显示在一行中,如下所示:ttvnw.net justin.tv twitch.tv twitchcon.com socialcam.com Traceback (most recent call last): File "amassprocess.py", line 7, in for i in topdomain: TypeError: 'int' object is not iterable我将不胜感激任何帮助或想法。谢谢。
查看完整描述

2 回答

?
慕田峪4524236

TA贡献1875条经验 获得超5个赞

使用您的代码,您可以将换行符替换为<br />:


$output2 = shell_exec('python amassprocess.py 2>&1' . $asnum);

echo nl2br($output2);

或者您可以获取一系列行并加入<br />::


exec('python amassprocess.py 2>&1' . $asnum, $output2);

echo implode('<br />', $output2);

<pre>或者,使用您的代码,您可以在标签中显示<code>,浏览器将使用换行符、制表符等预先格式化这些浏览器:


$output2 = shell_exec('python amassprocess.py 2>&1' . $asnum);

echo "<pre>$output2</pre>";


查看完整回答
反对 回复 2023-10-01
?
qq_遁去的一_1

TA贡献1725条经验 获得超7个赞

您可以在 python 代码中执行以下操作。

  1. 定义一个变量来保存
    类似x="<br>"

  2. 然后用于输出,print(i+x)这将连接您的字符串。


查看完整回答
反对 回复 2023-10-01
  • 2 回答
  • 0 关注
  • 122 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信