gpt4 book ai didi

php - 保持 PHP 和 HTML 分离

转载 作者:太空宇宙 更新时间:2023-11-04 14:13:36 24 4
gpt4 key购买 nike

我的网站通过调用 API 打印用户位置。假设我在网站上的一个文件 index.php 中包含以下代码:

<?php
$sIP = $_SERVER['REMOTE_ADDR'];
$sURL = "http://ipinfo.io/" .$sIP . "/json";
$sJSON = file_get_contents($sURL);
$view = (object) array();
$view->JSON = $sJSON;
?>

<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
</head>
<body>
<script>
// global string of Data
var gsData = <?= $view->JSON ?>

$(document).ready(function(){
var sRegion = gsData.region;
$('#result').html(sRegion);
});
</script>
<div>Region from data is:</div>
<div id="result"></div>
</body>

不过,我需要将 PHP 脚本和标记分开。我无法将 PHP 脚本嵌入到 script 元素中。如何获得 PHP 和 HTML 文件?

最佳答案

编辑:使用include_once()而不是 include 因为您可以使用相对路径。

您可以将 PHP 移动到其他文件中,然后 include_once 将其移回主文件中。

HTML 文件仍然必须是 .php 文件,但您可以将所有 PHP 脚本(除了 include 之外)包含在不同的文件中以获得更好的效果可维护性/可读性。

例如:

script.php

<?php
$sIP = $_SERVER['REMOTE_ADDR'];
$sURL = "http://ipinfo.io/" .$sIP . "/json";
$sJSON = file_get_contents($sURL);
$view = (object) array();
$view->JSON = $sJSON;
?>

index.php

<?php include_once("script.php") ?>
<!-- ^ is the only PHP you will need to include a separate PHP file -->
<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
</head>
<body>
<script>
// global string of Data
var gsData = <?= $view->JSON ?>

$(document).ready(function(){
var sRegion = gsData.region;
$('#result').html(sRegion);
});
</script>
<div>Region from data is:</div>
<div id="result"></div>
</body>

关于php - 保持 PHP 和 HTML 分离,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34549513/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com