-2

我有三个要写入 HTML 页面的数组:

foreach($arrin $array1){

  # create TAb in html file
 }
foreach($ar in $array2){
 # create TAb in html file
 }
foreach($a in $array3){
 # create TAb in html file
 }

我怎样才能做到这一点 ?谢谢

4

1 回答 1

-1

PowerShell 有一个用于生成 HTML 的内置命令。尝试这个:

$array | ConvertTo-Html > foo.html

或者,如果您只想要数组中的某些属性:

Get-Process | ConvertTo-Html -Property Name,Id,PM
于 2013-09-27T16:29:50.020 回答