0

我正在尝试从不同的 if 语句访问相同的变量。我该怎么做?我会展示我想做什么。

if{}
   if{}
   else{ $upfile }
else{}

我的 php.ini 中有这种结构。我想要做的是在插入语句的最后一个 else 中访问 $upfile 。我该怎么做?

任何答案都是有帮助的。

4

1 回答 1

0

You need to look into variable scope.

$upfile = 'test';
if{}
   if{}
   else{ $upfile }
else{}
于 2012-08-29T08:52:46.847 回答