Maison > développement back-end > tutoriel php > php中define防止跳墙

php中define防止跳墙

WBOY
Libérer: 2016-06-06 20:30:17
original
1353 Les gens l'ont consulté

这个是入口shiyan.php

{

<code>define('ACC','true');
require('itshi.php');
include('shiyan.html');
</code>
Copier après la connexion
Copier après la connexion

}

itshi.php
{

<code>defined('ACC') || exit('ACC 未定义');
$take = 1888;
</code>
Copier après la connexion
Copier après la connexion

}

shiyan.html
{

<code><a href="two.php" target="_blank">点击我</a>
<div>
    <?php echo $take; ?>
</div>
<a href="shiyan.php" target="_blank">返回实验</a>
</code>
Copier après la connexion
Copier après la connexion

}

{
two.php

<code>require('itshi.php');
</code>
Copier après la connexion
Copier après la connexion

}
当我运行shiyan.php的时候,点击a标签进入two.php怎么提示ACC未定义啊,不是一开始就在shiyan.php就定义了ACC吗?

回复内容:

这个是入口shiyan.php

{

<code>define('ACC','true');
require('itshi.php');
include('shiyan.html');
</code>
Copier après la connexion
Copier après la connexion

}

itshi.php
{

<code>defined('ACC') || exit('ACC 未定义');
$take = 1888;
</code>
Copier après la connexion
Copier après la connexion

}

shiyan.html
{

<code><a href="two.php" target="_blank">点击我</a>
<div>
    <?php echo $take; ?>
</div>
<a href="shiyan.php" target="_blank">返回实验</a>
</code>
Copier après la connexion
Copier après la connexion

}

{
two.php

<code>require('itshi.php');
</code>
Copier après la connexion
Copier après la connexion

}
当我运行shiyan.php的时候,点击a标签进入two.php怎么提示ACC未定义啊,不是一开始就在shiyan.php就定义了ACC吗?

你的 two.php 时只包含了 itshi.php,而 itshi.php 里没定义 ACC 常量,也没有包含 shiyan.php 文件啊,当然提示 AAC 未定义了,你可以在 itshi.php 最上面 require 'shiyan.php'。

Étiquettes associées:
php
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal