foreach結合samrty 資料如何不顯示呢

來源:互聯網
上載者:User
foreach結合samrty 資料怎麼不顯示呢
$load_list是一個二維數組,其中的$v['user_name']有以下資料
xiaodg,
x42466,
etea,
na0617,
kimo,
留影,
vian22,
qingyu,
jiangliman,
xiaobu,
xiaobu,
hfa818,實現的結果將兩個字元後面的用*代替,下面是實現*代碼,
foreach($load_list as $k=>&$v){
//print_r($v);
//exit;
$temp=$v['user_name'];

//判斷是否有中文
if(preg_match('/[\x81-\xfe][\x40-\xfe]/',$temp)){
mb_internal_encoding("gbk");
}else {
mb_internal_encoding("utf-8");
}
$len = mb_strlen($temp);
$t = '';
for($k=0; $k<$len; $k++){
if($k>2) {
$t .= '*';
}else {
$t .= mb_substr($temp, $k, 1);
}
}
$t=&$v['user_name'];

}

這是assign賦值:
$GLOBALS['tmpl']->assign("load_list",$load_list);

然後在頁面用samrty顯示:
{foreach from="$load_list" item="load"}


{$load.user_name}



但是顯示的結果是xiaodg沒有了,從第二個x42466開始顯示
這是結果圖:


foreach

分享到:


------解決方案--------------------
列印出第一個看看
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.