FPDF 的问题...$_POST 未出现

发布于 2024-10-10 21:50:49 字数 242 浏览 1 评论 0原文

php 的调用函数不起作用....

function Footer()
    {

$this->Cell($this->PG_W, 5, 'All quotes are valid for 30 days.  QUOTE EXPIRES: '**.$person["CA"]**, 0, 0, 'L');
}

$person["CA"] - 文本上没有出现

任何想法?

The calling function from php does not work...

function Footer()
    {

$this->Cell($this->PG_W, 5, 'All quotes are valid for 30 days.  QUOTE EXPIRES: '**.$person["CA"]**, 0, 0, 'L');
}

.$person["CA"] - does not appear on the text

any ideas??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瞳孔里扚悲伤 2024-10-17 21:50:49

您位于函数内部,名为 $person 的数组不会自动导入到其作用域中。

您必须使用 global$person 导入到函数的作用域中,或者将其作为参数传递,或者作为您似乎所在的对象的属性传递。

参考: PHP 手册中的变量范围

You are inside a function, and an array named $person would not automatically be imported into its scope.

You would have to import $person into the function's scope using global, or pass it as a parameter, or as a property of the object you seem to be in.

Reference: Variable scope in the PHP manual

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文