Blogger Information
Blog 63
fans 1
comment 0
visits 76083
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
如果将php脚本嵌入到html代码中, php应用程序中的基本结构与include的作用
桃儿的博客
Original
886 people have browsed it

如果将php脚本嵌入到html代码中:

将php代码放在<?php ?>代码段中,插入到HTML代码的任意位置都可以,可多次插入<?php ?>代码段。

实例

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
<h2><?php echo '国产好剧'; ?></h2>

<ol>
    <li><a href=""><?php echo '倚天屠龙记' ?></a></li>
    <li><a href=""><?php echo '都挺好' ?></a></li>
    <li><a href=""><?php echo '如果可以这样爱' ?></a></li>
</ol>

</body>

运行实例 »

点击 "运行实例" 按钮查看在线实例

php应用程序中的基本结构与include的作用:

php基本架构:

<?php  ?>

include是引用外部文件的命令函数

__DIR__ 是获取当前文件路径的命令函数

正常引用代码   include ' inc/admin.php';

通过绝对路径引用 include __DIR__ . '/inc/admin.php'; 通过PHP的拼接符点号拼接,并且在后面添加反斜杠


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post