dsdzvprlp51692469 2018-09-03 11:42
浏览 19
已采纳

从2个其他变量制作PHP变量

I'm starting a magazine which has 3 editions. UK, US, and European. Each will be published online at different times, therefore each has a different issue number.

So I want to create a way of selecting which issue goes with which edition, but I don't know how to join these 2 parts together. The code I'm using is:

<?php
$this_edition = "UK";
?>

<?php
$UK_issue = "1";
$US_issue = "3";
$EU_issue = "2";
?>

<?php
$this_issue = // The Issue Relating to This Edition
?>

What I want to do here is basically call the issue number ( 1/3/2 ) which relates to the $edition I'm udating, in this case, UK.

So essentially : $this_issue = $edition_issue

Does anyone know how I can do this?

  • 写回答

5条回答 默认 最新

  • dongxing2030 2018-09-03 11:51
    关注

    What you're trying to do is possible...

    $this_issue = ${$this_edition.'_issue'};
    

    But it's way better to use the solution suggested by pr1nc3.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?