用临时变量

时间:2018-01-06 16:32:11

标签: php if-statement

我有一个像这样的php文件

if ($a=='number1'){
  $b=2;
  $c=3;
}

elseif ($a=='letterA'){
  $b=33;
  $c=44;
}
  elseif ($a=='something'){
  $b=222;
  $c=3333;
}

现在我要解析这个文件并获取值"暂时" $ b和$ c。这就是说我需要设置$ a变量并获得$ b和$ c

的结果

换句话说在php文件中我需要暂时设置

$a='number1';

因此我可以推断出$ b和$ c的值,而无需实际加载现在设置变量的页面。

来自我需要生成的同一个文件

Name: 'number1'; this is setting the $a value
address: '$b'; // corresponding to 'number1 or $a variable
phone: '$c';  // corresponding to 'number1 or $a variable

Name: 'letterA'; this is setting the $a value
address: '$b'; // corresponding to letterA or $a variable
phone: '$c';  // corresponding to letterA or $a variable

看起来很简单,但我被卡住了

提前致谢

标记

0 个答案:

没有答案