我有一个php脚本,每次运行时都会将3个单词保存到一个文本文件中,我该如何对齐这些单词以使其始终位于不同行的行中的某个点,就像表格一样,例如,第一个单词应该总是在行的开头,第二个单词应排成15列,第三个单词应排成30列。
我已经研究了很长时间了,但是找不到适合我的答案。
这是我的代码,用于将3个变量和一个单词保存到文件中
$example1 = "example1"
$example2 = "example2"
$example3 = "example3"
$myfile = fopen("example.txt", "a");
$txt = "\n$example1 $example2 word $example3";
fwrite($myfile, $txt);
fclose($myfile);
每次我运行这个php时,我的变量的长度都不一定是相同的长度(它们永远不会超过15个字符,所以我认为这是每列之间的良好距离),因此它们看起来可能像这样...
$example1 = "example123"
$example2 = "example34"
$example3 = "exam"
目前,在我用这两个示例运行两次后,文本文件中的结果看起来像这样
example1 example2 word example3
example123 example34 word exam
但我希望它看起来像这样
example1 example2 word example3
example123 example34 word exam
阿波罗的战车
呼啦一阵风