FPDF 的问题...$_POST 未出现
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您位于函数内部,名为
$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 usingglobal
, 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