How to get root directory in yii2

后端 未结 7 1874
闹比i
闹比i 2020-12-15 03:20

yii2 Question

My yii2 install in d:\\wamp\\www\\yii2store

I want to get above path to save images which will be uploaded by me

7条回答
  •  执笔经年
    2020-12-15 03:53

    Try out this,

    My installation is at D:\xampp\htdocs\advanced

    \Yii::$app->basePath will give like D:\xampp\htdocs\advanced\backend.

    \Yii::$app->request->BaseUrl will give like localhost\advanced\backend\web\

    You may store the image using \Yii::$app->basePath and show it using \Yii::$app->request->BaseUrl

提交回复
热议问题