我的php页面中有一些html是我从数据库中获取的,会在我的网页中多次使用,所以我想把它放到php变量中供以后使用。
我的示例代码是
http://localhost:5000/lib/@angular/platform-browser/bundles/platform-browser.umd.js
如何将这个html存储到php变量中?
还请告诉我如何回显该变量的内容?
答案 0 :(得分:0)
我同意@Jon Stirling但你可以这样做:
$htmlData = '<div class="info">
Some content from database here...
<div class="more">
Some more text...
</div>
</div>';
你可以打印这个
echo $htmlData;