我有以下问题。我有声明变量的文件 variable.php:
<?php
$animal = "cat";
?>
和文件 b.php,我想在函数中使用这个变量
<?php
include_once 'a.php';
function section()
{
$html = "<b>" . $animal "</b>";
return $html;
}
?>
和文件 c.php 我正在使用我的函数section()
<?php
require_once 'b.php';
echo section();
?>
我有一条错误消息,即variable $animal does not exist in file b.php
. 为什么以及我可以在这里做什么?
最好的问候, 达格纳