我要在我的服务器上运行一个bash 脚本, 并在网页上显示输出。 脚本启动 trough php, 并且正在工作 。 - 但我重写喜欢将特定关键字颜色化 。 如何做最好?
<强 > 可能的解决办法: 强 >
我能找到关键词( 警告) 的起始点, 使用 < code> string. search (" 警告" ) ; code > (我不知道如何找到结尾) 。 - 并用 < code> string. substring (from, to) code > 来选择关键词。 然后使用 < code> string.fontcolor ("red") code > 来显示颜色, 以及 < code > document. write( 颜色string); code > 来显示它 。
<强>编辑: 强>
“强者”我不认为我的问题已经明确了,所以我再试一次:“/强”
php 运行bash 脚本, 返回文字, 例如 。
"This is some text that bash returns"
我如何最好地把案文变成
"This is <span class= keyword >some</span> text that bash returns"
这样我就可以对关键字(“ 某些” ) 应用彩色样式吗?