There is any possibility making something like that using PHP?

<?php

$number = 1;

$str_$number = "BlahBlah";

// and make this: $str_1 = "BlahBlah";

echo $str_1;

?>
有帮助吗?

解决方案

<?php
$number = 1;
${'str_'.$number} = 'foobar';
echo $str_1;//foobar

其他提示

<?php
$number = 1;
$value = 'str_' . $number;
$$value = 'blahblah';
echo $str_1;
?>

Try

<?php
$number = 1;
${'str_' . $number} = 'foobar';
?>

You can also try

$number = 1;
eval('$str_'.$number.' = "foobar";');
echo $str_1;
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top