需要帮助编写php脚本来生成文本文件

时间:2013-06-05 20:04:51

标签: php batch-file virtualbox

我根本不是php专家。

我正在开发一个VOIP项目,并且必须在我的虚拟框中打开一个端口范围(10000 - 20000)。 问题在于没有这样的选择可以一次完成。必须使用命令行逐个完成:

VBoxManage modifyvm "Elastix 4.0" --natpf1 "guestssh,udp,,10001,,10001"
VBoxManage modifyvm "Elastix 4.0" --natpf1 "guestssh,udp,,10002,,10002"
VBoxManage modifyvm "Elastix 4.0" --natpf1 "guestssh,udp,,10003,,10003"

依此类推,直到我

VBoxManage modifyvm "Elastix 4.0" --natpf1 "guestssh,udp,,20000,,20000"

任何人都可以帮我一个PHP脚本,它会生成一个包含

的TXT文件
VBoxManage modifyvm "Elastix 4.0" --natpf1 "guestssh,udp,,10001,,10001"
to
VBoxManage modifyvm "Elastix 4.0" --natpf1 "guestssh,udp,,20000,,20000"

由于

4 个答案:

答案 0 :(得分:1)

Stackoverflow旨在帮助您解决问题,而不是为您编码。

反正

$output = '';
for ($i = 10001; $i <= 20000; ++$i) {
    $output .= 'VBoxManage modifyvm "Elastix 4.0" --natpf1 "guestssh,udp,,' . $i . ',,' . $i . '"' . PHP_EOL;
}

$f = fopen('commands.txt', 'w');
fwrite($f, $output);
fclose($f);

答案 1 :(得分:1)

 <?php
  $fp = fopen("outfile.txt", "w");
  for($x = 10000; $x<=20000; $x++){
      fprintf($fp , 'VBoxManage modifyvm "Elastix 4.0" --natpf1 "guestssh%d,udp,,%d,,%d"'."\n", $x - 9999, $x, $x);
  }
  fclose($fp);

答案 2 :(得分:0)

这是一个简单的解决方案,使用file_put_contents()将您写入的文本打印到名为“this_is_my_txt_file.txt”的文件中。

file_put_contents('this_is_my_txt_file.txt', "VBoxManage modifyvm \"Elastix 4.0\" --natpf1 \"guestssh,udp,,10001,,10001\" to VBoxManage modifyvm \"Elastix 4.0\" --natpf1 \"guestssh,udp,,20000,,20000\"\n\r");

修改 哦,我现在看到你改变了问题。现在,我恐怕无法理解。你希望它看到每一行并在到达“guestssh,udp ,, 20000,,20000”时停止并将其打印到文件中?

请详细说明你要做的事情。

答案 3 :(得分:0)

$content = "";
for($i=1;$i<=10000;$i++){
$content.="VBoxManage modifyvm "Elastix 4.0" --natpf1 \"guestssh{$i},udp,,{$i+10000},,{$i+10000}\"\n";
}
file_put_contents('file.txt', $content);