某个php文件如何调用其他文件夹下php文件 如:我想在index.php中调用 ad文件夹下的foot.php 如何写谢谢!
这么写么?<?phprequire"ad/foot.php"?>我一个php知识没有只是想修改某个文件!谢谢...
这么写么?
<?php
require "ad/foot.php"
?>
我一个php知识没有 只是想修改某个文件 !谢谢 展开
<?php
require "ad/foot.php"
?>
我一个php知识没有 只是想修改某个文件 !谢谢 展开
4个回答
展开全部
请使用include_once “ad/foot.php”(只引用一次)
调用其它php文件有多种方式:require ,require_once ,include ,include_once 但include 和require是有区别的:
require 这个函式通常放在 PHP 程式的最前面,PHP 程式在执行前,就会先读入 require 所指定引入的档案,使它变成 PHP 程式网页的一部份。常用的函式,亦可以这个方法将它引入网页中。
include这个函式一般是放在流程控制的处理区段中。PHP 程式网页在读到 include 的档案时,才将它读进来。这种方式,可以把程式执行时的流程简单化。
还有,使用require函数引用文件是不受任何条件限制一定会被读取到当前php页的,例如
$language = 'english';
if $language = "french" {
include_once '.\french_file.php';
}
else {
include_once '.\not_french_file.php';
}
此时,因为条件语句的关系,只引用了not_french_file.php。
而如果用require代替include
if $language = "french" {
require_once '.\french_file.php'
}
else {
require_once '.\not_french_file.php'
}
无论条件语句如何,french_file.php和not_french_file.php都会被调用到当前页面。
调用其它php文件有多种方式:require ,require_once ,include ,include_once 但include 和require是有区别的:
require 这个函式通常放在 PHP 程式的最前面,PHP 程式在执行前,就会先读入 require 所指定引入的档案,使它变成 PHP 程式网页的一部份。常用的函式,亦可以这个方法将它引入网页中。
include这个函式一般是放在流程控制的处理区段中。PHP 程式网页在读到 include 的档案时,才将它读进来。这种方式,可以把程式执行时的流程简单化。
还有,使用require函数引用文件是不受任何条件限制一定会被读取到当前php页的,例如
$language = 'english';
if $language = "french" {
include_once '.\french_file.php';
}
else {
include_once '.\not_french_file.php';
}
此时,因为条件语句的关系,只引用了not_french_file.php。
而如果用require代替include
if $language = "french" {
require_once '.\french_file.php'
}
else {
require_once '.\not_french_file.php'
}
无论条件语句如何,french_file.php和not_french_file.php都会被调用到当前页面。
展开全部
调用有多种方式。
require "ad/foot.php"
require_once "ad/foot.php"
include "ad/foot.php"
include_once "ad/foot.php"
include require效果是一样的
include_once require_once效果是一样的
前者会出现重复引用,导致重复定义的错误
后者只引用一次,如果已经引用,则不再引用
require "ad/foot.php"
require_once "ad/foot.php"
include "ad/foot.php"
include_once "ad/foot.php"
include require效果是一样的
include_once require_once效果是一样的
前者会出现重复引用,导致重复定义的错误
后者只引用一次,如果已经引用,则不再引用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
a.php内这样写,就是相对路径了,
<?php
header("location:../index.php");
?>
如果正确请采纳我吧,谢谢!
<?php
header("location:../index.php");
?>
如果正确请采纳我吧,谢谢!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
require "../ad/foot.php";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |