YII2
西卡家的毛毛丝
被名为郑秀妍Jessica的人圈饭了
展开
-
YII2
Yii2中的表之间的关联有2种,它们用来指定两个模型之间的关联。一对多:hasMany 所关联的模型的类名称。一对一:hasOne 是一个数组,其中键为所关联的模型中的属性,值为当前模型中的属性原创 2016-02-22 17:26:29 · 316 阅读 · 0 评论 -
yii2 leftjoin问题
$query = static::find()->select(['u.*','resume.*']);$query->leftJoin('user u', 'u.id=resume.user_id'); $data = $query->all(); var_dump($data);die;如果不加->asArray()获取不到联表数据,须加上 $data = $query...原创 2018-04-12 10:23:34 · 2526 阅读 · 0 评论 -
yii2 HeadersAlreadySentException 报错
An Error occurred while handling another error:exception 'yii\web\HeadersAlreadySentException' with message 'Headers already sent in /xxxx/xxxx/xxx.php on line 90.' in /xxxx/xxxx/vendor/yiisoft/yii2/w...原创 2018-04-03 10:06:48 · 9003 阅读 · 1 评论 -
yii2 rest api 请求报错
Fatal error: Uncaught exception 'yii\base\InvalidArgumentException' with message 'Response content must not be an array.' in /Applications/MAMP/htdocs/yii2/wugongzu/vendor/yiisoft/yii2/web/Response.ph...原创 2018-03-30 15:45:06 · 2022 阅读 · 0 评论 -
Yii2 rest 联表数据查询
在model里写public function fields() { return [ 'id', 'company_id', 'type_id', 'company'=>function () { return Company::fin...原创 2018-03-24 16:04:11 · 932 阅读 · 0 评论 -
换算距离单位
public static function getSizeLength($size) { $str = ''; $units = ['m','km'];//单位字符,可类推添加更多字符. if (!empty($size) && is_numeric($size)) { foreach($u原创 2017-09-05 18:10:00 · 2051 阅读 · 0 评论 -
yii2 phpexecl导入
composer requirephpoffice/phpexcel:"*"public function actionImport() { $model = new Quenstion(); $ok = ""; if ($model->load(Yii::$app->request->post())) {原创 2016-12-02 10:15:35 · 4744 阅读 · 0 评论 -
YII2 自定义log文件
use yii\log\FileTarget; //引入类messages 里面的参数说明[[ 0 ] = > 消息[ 1 ] = > 等级 (1是 LEVEL_ERROR, 2是LEVEL_WARNING,4是LEVEL_INFO,8是LEVEL_TRACE,64是LEVEL_PROFILE,80是LEVEL_PROFILE_BEGIN,96是LEVEL_PROFILE原创 2017-07-21 11:54:18 · 1510 阅读 · 0 评论 -
yii2 yii\web\HeadersAlreadySentException报错
An Error occurred while handling another error:exception 'yii\web\HeadersAlreadySentException' with message 'Headers already sent in /xxxxx/controllers/xxxController.php on line 245.' in /xxxxx/vendo...原创 2018-04-18 17:33:47 · 3250 阅读 · 0 评论