Question

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;

?>
Était-ce utile?

La solution

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

Autres conseils

<?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;
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top