php如何获取表单上传文件的绝对路径
图片:
$src=$_POST['src'];
获取的是 1.jpg
如何获取包含绝对路径的地址,如:D:\php\Essamp\wwwroot\huaxia\Img\1.jpg
回复讨论(解决方案)
当file改变(onchange时间记录)时候将src给隐藏域赋值,服务端获取该隐藏域就行了
获得这个路径有意义吗?
一楼能说的清楚点吗?或有相应代码?
我是想在后台获取图片的绝对路径后,添加到数据库中,再在前台显示出来
在ie6上获取的是绝对路径,但在其他浏览器中获取的是文件名,不包含路径
1 这样做没有意义 将用户的本地路径展示出来会招致反感
2 如果非要这么做 可以将输入框中的字符串赋值给页面中hidden变量 这样post出去就可以
给你个参考 js赋给hidden变量你自己实现吧
一楼能说的清楚点吗?或有相应代码?
我是想在后台获取图片的绝对路径后,添加到数据库中,再在前台显示出来
你知道图片上传的路径没用
你上传后,图片还得修改文件名和存储路径,
然后再传到自己的服务器文件夹中就行了
不会让你知道上传用户本地的路径的,否则就曝光了人家的隐私
弱弱地问一下,那这路径是干嘛用的
他是想要图片预览的效果吧
感觉没必要这么做
5L我写的能在ie下OK ff5.0不可
如果真想做,可以伪装一个上传文件输入框,将真正的上传文件输入框给隐藏起来。通过js赋值。
用php的函数__file__可以实现,查看函数手册就明白啦~
该用$_FILES
$_FILES["file"]["temp_name"] 这个是你要的?
用$_FILES["file"]["temp_name"] 可以但是获取到得临时文件路径
如果要用到获取指定图片格式的文件进行操作,就必须要用到觉得路径
大神们 快来帮帮我们这些小鸟吧。
当然有用了,通过curl上传文件就需要这个路径

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Alipay PHP...

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.
