
PHP程序中可包含哪三种代码
可以包含的代码有html、css、JavaScript,采用混编的写法时文件名需要以.php结尾,否则不能正常解析php代码。
index.php:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
/*css*/
body{
background: #eee;
}
</style>
</head>
<body>
<!-- html -->
<p>html</p><div class="aritcle_card flexRow">
<div class="artcardd flexRow">
<a class="aritcle_card_img" href="/xiazai/code/10910" title="名品购物网店系统"><img
src="https://img.php.cn/upload/webcode/000/000/013/176425560799149.jpg" alt="名品购物网店系统" onerror="this.onerror='';this.src='/static/lhimages/moren/morentu.png'" ></a>
<div class="aritcle_card_info flexColumn">
<a href="/xiazai/code/10910" title="名品购物网店系统">名品购物网店系统</a>
<p>适合品牌专卖店专用,从前台的美工设计就开始强调视觉形象,有助于提升商品的档次,打造网店品牌!后台及程序核心比较简洁,着重在线购物,去掉了繁琐的代码及垃圾程式,在结构上更适合一些中高档的时尚品牌商品展示. 率先引入语言包机制,可在1小时内制作出任何语言版本,程序所有应用文字皆引自LANG目录下的语言包文件,独特的套图更换功能,三级物品分类,购物车帖心设计,在国内率先将购物车与商品显示页面完美结合,完</p>
</div>
<a href="/xiazai/code/10910" title="名品购物网店系统" class="aritcle_card_btn flexRow flexcenter"><b></b><span>下载</span> </a>
</div>
</div><p><span>立即学习</span>“<a href="https://pan.quark.cn/s/7fc7563c4182" style="text-decoration: underline !important; color: blue; font-weight: bolder;" rel="nofollow" target="_blank">PHP免费学习笔记(深入)</a>”;</p>
<!-- JavaScript -->
<script>
alert(123);
</script>
</body>
</html>
<?php
echo 'www.php.cn';
?>更多PHP相关知识,请访问PHP中文网!










