如何在php中使变量成为一组变量

时间:2015-12-12 19:39:42

标签: php html variables

我想让php变量成为一组其他变量,以便我可以将新的变量组放入.txt文件中。 类似的东西:

    $txt = $_GET["html"]
    $txt2 = $_GET["js"]
    $txt3 = $_GET["php"]
    $txt4 = $_GET["other"]
    $text = $txt $txt2 $txt3 $txt4;
    $filename = fopen("config.txt", "w");
    fwrite($filename, $text);
    fclose($filename);

我搜索了Google和Stack Overflow,但似乎没有解决我的问题。

1 个答案:

答案 0 :(得分:1)

如果您只想将多个字符串值组合成一个字符串值,那么您要查找的术语是" concatenate&#34 ;,这在PHP中使用.运算符完成:

$text = $txt . $txt2 . $txt3 . $txt4;