php生成文件

WBOY
WBOYOriginal
2016-06-23 13:19:391055Durchsuche

a.php<?php$a="****";require_once dirname(__FILE__) . '/b.php';?>b.php<?php............echo $a;.......?>之后生成  xxx.txt  内容是 b.php里的内容这个功能要怎么实现?本来使用下面方法做的,但是写入的内容有 双引号和单引号[code=php]$myfile = fopen("protected/views/1/_form.php", "w") or die("Unable to open file!");$txt = "Bill Gates\n";fwrite($myfile, $txt);



[/code]


回复讨论(解决方案)

既然完全相同为什么不用程序copy一份呢

$s =<<< 'TXT'<?php............echo $a;.......?>TXT;file_put_contents('c.php', $s);

$data = file_get_contents('b.php');file_put_contents('c.php', $data, true);


   
生成的c.php
<?php............echo $a;    //变量a没有转义     这个用替换处理吗?.......?>

难道你要的是这个?

$data = file_get_contents('http://localhost/a.php');file_put_contents('xxx.txt', $data);


效果如下:

<?php$a=1;$s =<<< 'TXT'<?php....... $a;......?>TXT;

生成后的文件
<?php....... 1;......?>

$s =.......
 $a;
......
?>
TXT;
去掉 $s =

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn