是否可以将变量设置为其他变量名称的一部分

问题描述 投票:0回答:1

我总结了苹果、甜瓜、橙子、梨、葡萄...等多种水果的数据。 我下面的代码工作正常,但如果可能的话我喜欢将其设为模板。

<?php $fruit_name='apple' ?>
<?php include("args.php")?> // Using $fruit_name as condition of $args, and $number is caculated then.
<?php $number_apple_fruit = $number;?> // Store $number to $num_apple_fruit to distinguish data from other fruit data.

我想知道是否可以在第三行自动将“apple”设置在下面 AAAAA 的位置。

<?php $fruit_name='apple' ?>
<?php include("args.php")?>
<?php $number_AAAAA_fruit = $number;?>

是否可以将变量设置为其他变量名称的一部分?

php variables variable-names
1个回答
0
投票

您可以使用变量

${'number_'.$fruit_name.'_fruit'} = $number;
© www.soinside.com 2019 - 2024. All rights reserved.