我最近继承了一个文件结构糟糕的网站。我需要更新一些内容(文本),但我找不到它的定义。数据库表没有信息,所以我猜测文本正在其他地方定义。 Chrome开发者工具中是否有工具或“技巧”来查找内容源?非常感谢您的帮助!
***来自PHP文件的片段:
<div id="product_wrapper" class="add-bottom30">
<div class="columns sixteen">
<div class="columns twelve add-bottom60 catalogue">
<!-- Pager -->
<?php include('sql-' . $_SESSION['lang'] . '/promos.php');?>
</div>
<div class="columns four side">
<h5 style="margin-bottom:25px;">FLYERS</h5>
<ul>
<li style="background-color:#0065a4;">
<a href="download-file.php?file=<?php echo 'doc-' . $_SESSION['lang'] . '/flyers/Storage-April-2016.pdf&&type=pdf' ?>"><?php echo flyer_jet_2016; (where the text I need to change lives) ?></a>
</li>
</ul>
</div>
<div class="clear"><!-- ClearFix --></div>
</div>
</div>
***来自源代码的片段(Chrome中的“查看来源”):
<div class="columns four side">
<h5 style="margin-bottom:25px;">FLYERS</h5>
<ul>
<li style="background-color:#0065a4;">
<a href="download-file.php?file=doc-eng/flyers/JET-Storage-April-2016.pdf&&type=pdf"><span class="icon" data-icon="(" style="color:#fff;margin-bottom:15px;"></span><br>Tool Storage<br>Solutions 2016</a>
</li>
</ul>
</div>
<div class="clear"><!-- ClearFix --></div>
</div>