我有一个具有注册用户和用户图像的系统。一些用户图像使用空格--Pic.jpeg教授
重命名。现在,我尝试检索显示为+的URL的用户图像
https://my.space/photos/49/profile/Prof+Pic.jpeg
预期输出为
https://my.space/photos/49/profile/Prof Pic.jpeg
答案 0 :(得分:0)
如果这是数据库中的内容,请执行此操作。取决于您数据库中的内容。例如https://my.space/photos/49/profile/Prof Pic.jpeg
$getImgUrl=DB::table('table')->where('id',$request->input('id'))->first();
$url = $getImgUrl->imgurl;
$removeSpace=preg_replace('/\s/', '', $url);
您可以通过添加将其删除
$removeSpace
您现在可以使用 CREATE TEMPORARY TABLE tmpdb.tmp_customers AS (
SELECT *
FROM testdb.customers
WHERE country='Mexico'
);