gpt4 book ai didi

php - 如何将参数传递给包含的文件?

转载 作者:IT王子 更新时间:2023-10-29 00:57:18 25 4
gpt4 key购买 nike

我正在尝试制作整个 <head>部分自己的包含文件。一个缺点是标题和描述以及关键字是相同的;我不知道如何将参数传递给包含文件。

代码如下:

索引.php

<?php include("header.php?header=aaaaaaaaaaaaaaaaaaaaa"); ?>

<body>
.....
..
.

header.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<link rel="shortcut icon" href="favicon.ico">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="Keywords" content=" <?php $_GET["header"]?> " >
<meta name="Description" content=" <?php $_GET["header"]?> " >
<title> <?php $_GET["header"]?> </title>
<link rel="stylesheet" type="text/css" href="reset.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
</head>

显然这行不通;如何将参数传递给包含的文件?

最佳答案

Include 具有调用它的行的范围。

如果你不想创建新的全局变量,你可以用一个函数包裹 include():

function includeHeader($title) {
include("inc/header.php");
}
每当您使用值调用 includeHeader 时,都会在包含的代码中定义

$title,例如 includeHeader('My Fancy Title').

如果你想传递多个变量,你总是可以传递一个数组而不是一个字符串。

让我们创建一个通用函数:

function includeFile($file, $variables) {
include($file);
}

瞧!

使用 extract让它更整洁:

function includeFileWithVariables($fileName, $variables) {
extract($variables);
include($fileName);
}

现在你可以这样做了:

includeFileWithVariables("header.php", array(
'keywords'=> "Potato, Tomato, Toothpaste",
'title'=> "Hello World"
));

知道它会导致变量$keywords$title被定义在包含的代码范围内。

关于php - 如何将参数传递给包含的文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4315271/

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