如何打开一个文件并在php中的双引号之间写入

kfgdxczn  于 2023-04-28  发布在  PHP
关注(0)|答案(1)|浏览(111)

我有一个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);
mnemlml8

mnemlml81#

一种方法是将文件包含在中,并且可以访问变量$tab。你写回$tab和$tb

require_once "table_call.php";

$myfile = fopen("table_call.php", "a") or die("Unable to open file!");
$tb = '<th>2016</th>';
fwrite($myfile, $tab.$tb);

fclose($myfile);

相关问题