如何打印""在html文件中的php varible中

时间:2016-08-12 02:43:01

标签: php html algorithm

好的,当我这样做时:

<br>
$line9 = "<button onclick='window.location.href='//home-pc/';'/>GoBack</button>";
$phpfiletxt
"$line1\n$line2\n$line3\n$line4\n$line5\n$line6\n$line7\n$line8\n$line9\n$line10\n$line11\n$line12\n$line13\n$line14\n$line15";<br>
$myfile = fopen("$folder/index.html", "w") or die("Unable to open file!");<br>
fwrite($myfile, $phpfiletxt);<br>
fclose($myfile);<br>
$wordlink = "<a class='list' target='_top' href='$folder'>$word</a>";<br>
$myfile = fopen("wordslist.php", "a") or die("Unable to open file!");<br>
fwrite($myfile, $wordlink);<br>
header("Location: $folder");<br>

按钮是我想让它工作,因为它没有做任何事情因为&#39;或&#34;没有正确放置

所以我需要它,所以这是一个可以打印的变量:

onclick='window.location.href='//home-pc/';'/>GoBack</button>";

进入html文件。感谢

4 个答案:

答案 0 :(得分:0)

关于:

  

如何打印&#34;&#34;在html文件中的php varible

您执行以下操作:

$string = "The man said\"Hello\" and ran away!";

echo $string;

结果:男人说&#34;你好&#34;然后跑开了!

它被称为逃避。 http://php.net/manual/en/language.types.string.php

答案 1 :(得分:0)

<button onclick="window.location.href='/home/pc'">GoBack</button>;

你需要用它替换它。

答案 2 :(得分:0)

试试这个

$line9 = "<button onclick=\"window.location.href='//home-pc/';\">GoBack</button>";

答案 3 :(得分:0)

我总是使用&#39;而不是&#34;,因为 html 有这么多&#34;需要像\&#34; ... \&#34;

一样逃脱
$string = '<a class="text-success" id="success">success></a>'