当前位置:Gxlcms > PHP教程 > html转换为php的方法

html转换为php的方法

时间:2021-07-01 10:21:17 帮助过:506人阅读

是将一个网站的首页的源代码中的内容转换成php格式(推荐学习:PHP视频教程)

<div class="mid">
<ul>
<li class="item one">
<h3 class="title "><a href="http://cy.whsw.cn/?cat=42">头脑风暴</a></h3>
<p class="sub-title">头脑风暴法力图通过一定的讨论程序</p>
</li>
<div class="clear"></div>
</ul>
</div>

把这里的内容改成PHP格式

因为html没有php代码,所以直接将源代码文件名后缀由html改名为php就可以了。如果要在里面写php代码。加上如下就可以了。在网页里的任何位置:<?php echo 'hello world';?>

已经将你需要的代码转化为php文件,你复制此代码到你新建立文件:比如test.php。就是你想要的效果了。

<?php
$test=<<<ttt
<div class="mid">
<ul>
<li class="item one">
<h3 class="title "><a href="http://cy.whsw.cn/?cat=42">头脑风暴</a></h3>
<p class="sub-title">头脑风暴法力图通过一定的讨论程序</p>
</li>
<div class="clear"></div>
</ul>
</div>
ttt;
echo $test;
?>

以上就是html转换为php的方法的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行