thinkphp 中的图片路径该如何保存?



 <img src="/Upload/201505/29/201505290255181116.jpg">

如果要处理这张图片,用file_exits 判断这个文件是不存在的。而 ./Upload/201505/29/201505290255181116.jpg 是存在的。
thinkphp该如何处理图片路径的问题?

绝对路径 thinkphp 相对路径 图片路径

davewit 10 years, 3 months ago

首先需要弄清楚在Linux下,/与./的区别,从文件路径来说,/是从根目录开始,可用于绝对路径,而./是当前目录,更多用于相对路径。所以,在你的项目中,如果你的根目录下有Upload目录,可以那样判断,但如果没有的话,就得写相对路径了

Geburah answered 10 years, 3 months ago

1 绝对路径


 <img src="/myweb/Tpl/default/Public/iamges/logo.png" />

2 设定head中的base


 <head>
<base href="http://localhost/myweb/Tpl/default/" />
</head>
<img src="Public/iamges/logo.png" />

但是链接的url相对地址也成这个了

这篇文章你可以看一下: 实例讲解ThinkPHP的UploadFile文件上传类的详细用法

auron answered 10 years, 3 months ago

Your Answer