人人商城v2获取头像出错多出132132
生活随笔
收集整理的這篇文章主要介紹了
人人商城v2获取头像出错多出132132
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
2019獨角獸企業重金招聘Python工程師標準>>>
/addons/ewei_shopv2/core/model/memeber.php
v2:
if (!(empty($info))) {if (!(strexists($info['avatar'], 'http://')) && !(strexists($info['avatar'], 'https://'))) {$info['avatar'] = tomedia($info['avatar']);}if ($_W['ishttps']) {$info['avatar'] = str_replace('http://', 'https://', $info['avatar']);}$info = $this->updateCredits($info);}v3:
if (!(empty($info))) {if (!(strexists($info['avatar'], 'http://')) && !(strexists($info['avatar'], 'https://'))) {$info['avatar'] = tomedia($info['avatar']);}if ($_W['ishttps']) {$info['avatar'] = str_replace('http://', 'https://', $info['avatar']);}if(strpos($info['avatar'],'132132')){$upgrade2=array();$upgrade2['avatar'] = str_replace('132132', '132', $info['avatar']);pdo_update('ewei_shop_member', $upgrade2, array('id' => $info['id']));}$info = $this->updateCredits($info);}獲取信息時去掉132132后的132
轉載于:https://my.oschina.net/u/3104120/blog/1617398
總結
以上是生活随笔為你收集整理的人人商城v2获取头像出错多出132132的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 三角形内随机生成一个点
- 下一篇: Python中下划线---完全解读