如何在文本文件中打印php变量?

时间:2015-03-12 18:47:31

标签: php html

我想在文本文件中打印php变量。

示例:

<?php
$name='x' ;
?>

我想将名称值放在文本文件中,以便将其打印为硬拷贝。

2 个答案:

答案 0 :(得分:1)

以下是如何完成它。

<?php file_put_contents('filename', 'content');

Have a look at this function at PHP.net

答案 1 :(得分:0)

由于您的问题不包括您自己尝试过的任何内容(通常建议使用此内容)。这是你开始的地方 - php file_put_contents函数。

您可以尝试这样的事情:

<?php
$file = 'some-file.txt';
$name = "x";
// Write the contents to the file
file_put_contents($file, $name);
?>

一些谷歌搜索肯定会在这里提供一些见解。

希望它有所帮助!