变量外部foreach循环

时间:2015-09-10 06:53:20

标签: php foreach

这是我的PHP代码:

#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
#define ll long long int
vector<ll> v;
void recurse(ll num)
{
    v.push_back(num);
    if (num > ((ll)10e10))
        return;
    recurse(num * 10 + 4);
    recurse(num * 10 + 7);
}

int main()
{
    recurse(0);
    sort(v.begin(), v.end());
    ll n;
    cin >> n;
    cout << find(v.begin(),v.end(),n)-v.begin()<< endl;
    return 0;
}

现在,我想在每个下面的输入框中打印$ stageDate的值,例如

if( !empty($row_edit) ){
            $stageDates = explode(', ',$row_edit['placement_stage_date']);
            foreach( $stageDates as $stageDate ){
                  echo $stageDate.'<br/>';
            }
   }

我有5个输入框,但我在这里只是每个文本框中的最后一个值。

0 个答案:

没有答案