1234567891011121314151617181920212223 |
- <?php
- namespace app\model;
- use think\Model;
- class BuildingHousetypeFile extends Model
- {
- public function setFileurlAttr($value){
- $domain = config('app.ali_oss_bindurl');
- $search = 'https://'.$domain.'/';
- return str_replace($search, '', $value);
- }
- public function getFileurlAttr($value){
- if(empty($value)) return $value;
- $domain = config('app.ali_oss_bindurl');
- $value = 'https://'.$domain.'/'.$value;
- return $value;
- }
- }
|