如何将 HTML 文件更改为 PHP

How to change HTML file to PHP

我有一个包含 HTML 代码的 HTML 文件。如何从 HTML 文件更改为 PHP 文件?

以下是HTML代码:

<html>
    <head>
        <title>Instascan – Demo</title>
        <link rel="stylesheet" href="style.css">
        <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/webrtc-adapter/3.3.3/adapter.min.js"></script>
        <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.1.10/vue.min.js"></script>
        <script type="text/javascript" src="https://rawgit.com/schmich/instascan-builds/master/instascan.min.js"></script>
    </head>

    <body>
        <div id="app">
            <div class="sidebar">
                <section class="scans">
                    <h2>Scans</h2>
                    <ul v-if="scans.length === 0">
                        <li class="empty">No scans yet</li>
                    </ul>
                    <transition-group name="scans" tag="ul">
                        <li v-for="scan in scans" :key="scan.date" :title="scan.content">{{ scan.content }}</li>
                    </transition-group>
                </section>
            </div>
            <div class="preview-container">
                <video id="preview"></video>
            </div>
        </div>
        <script type="text/javascript" src="app.js"></script>
    </body>

</html>

更改您的 HTML 文件扩展名。例如,index.html 将是 index.php

只需将文件扩展名 .html 更改为 .php(index.html 更改为 index.php)。

如果您想添加任何 PHP 代码,您必须使用 <?php and ?> 标签。

对于您的情况,只需更改文件名的扩展名即可。示例:yourfilename.htmlyourfilename.php.