📜  获取 tmp 文件的内容 php 代码示例

📅  最后修改于: 2022-03-11 14:54:52.638000             🧑  作者: Mango

代码示例1
$file = $_FILES['file']['tmp_name']; // It is the path to the file
$data = file_get_contents($file);