如何将php变量传递给插值

时间:2018-10-23 21:26:04

标签: php html angularjs interpolation

我想动态更改{{}}中的名称。这是我的代码,我希望$ firstEle在{{}}内部不断变化。我是angularjs的新手!

 public $testArr = array(
    array("PersonID", 1, 1, 'yes' ,"number", 'yes', 'on'),
    array("LastName", 1, 1, 'no' ,"text", 'yes', 'on'),
    array("FirstName", 2, 1, 'no' ,"text", 'yes', 'off')
);

foreach($testArr as $disp)
        {
            if($disp[6] === 'on')
            {
                $firstEle= $disp[0];
                echo <<<HTML
                <div style="display: inline-block; width: 25%; padding: 
20px;" >{{row.$firstEle}}</div>
                <button class="btn btn-success text-right" data-ng- 
click="showFilled(row)">EDIT</button>
HTML;

            }
        }

0 个答案:

没有答案