我有一个PHP文件,看起来像
$tab ="
<th>Waste Collected</th>
<th>2010</th>
<th>2011</th>
<th>2012</th>
<th>2013</th>
<th>2014</th>
<th>2015</th>";
现在我想在双引号之间写上2016,但它写在双引号之外。
我希望它就像
$tab ="
<th>Waste Collected</th>
<th>2010</th>
<th>2011</th>
<th>2012</th>
<th>2013</th>
<th>2014</th>
<th>2015</th>
<th>2016</th>";
这里是代码
$myfile = fopen("table_call.php", "a") or die("Unable to open file!");
$tb = '<th>2016</th>';
fwrite($myfile, $tb);
fclose($myfile);
1条答案
按热度按时间mnemlml81#
一种方法是将文件包含在中,并且可以访问变量$tab。你写回$tab和$tb