我总结了苹果、甜瓜、橙子、梨、葡萄...等多种水果的数据。 我下面的代码工作正常,但如果可能的话我喜欢将其设为模板。
<?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;?>
是否可以将变量设置为其他变量名称的一部分?
您可以使用变量
${'number_'.$fruit_name.'_fruit'} = $number;