最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

PHP, Creating a dynamic variable

programmeradmin18浏览0评论

Is there any way through which I can declare the dynamic variable in php. for eg, I am using a for loop and the variable name is $message. and I want to add some dynamic data at the end of the variable name. code is below

foreach ($quant as $quantity) {
            $message.$quantity['type'] =  'Listing ID : '.$quantity['product_id'].' With Quantity: '.$quantity['quantity'].'MT, State- '.$quantity['state_name'].' and Coal type-'.$quantity['coal_type'].'<br>';
        }

so if the $quantity['type'] = 1, then the variable name should be $message1 and so on. currently I am trying to concatenate but it is wrong. Please tell me how it can be corrected. Thanks in advance

Is there any way through which I can declare the dynamic variable in php. for eg, I am using a for loop and the variable name is $message. and I want to add some dynamic data at the end of the variable name. code is below

foreach ($quant as $quantity) {
            $message.$quantity['type'] =  'Listing ID : '.$quantity['product_id'].' With Quantity: '.$quantity['quantity'].'MT, State- '.$quantity['state_name'].' and Coal type-'.$quantity['coal_type'].'<br>';
        }

so if the $quantity['type'] = 1, then the variable name should be $message1 and so on. currently I am trying to concatenate but it is wrong. Please tell me how it can be corrected. Thanks in advance

Share Improve this question asked May 2, 2017 at 11:17 Nikhil GuptaNikhil Gupta 1112 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 0

Your own solution works I guess (double $$) but usually you do it this way:

$quantity['type'] = 1;
${'message' . $quantity['type']} = 'hello';
echo $message1; // hello

After doing a little research I found out the solution myself.

following is the code showing how it can be done

foreach ( $quant as $quantity ) {
    $test  = 'message' . $quantity['type'];
    $test .=  'Listing ID : ' . $quantity['product_id'] 
        . ' With Quantity: '  . $quantity['quantity'] 
        . 'MT, State- '       . $quantity['state_name'] 
        . ' and Coal type-'   . $quantity['coal_type'];
}

Now $message1 will print the result.

发布评论

评论列表(0)

  1. 暂无评论