1
這是我的測試案例測試情況下刪除原始文件,同時通過測試的情況下上傳文件
public function testSelfieFileUpload()
{
$path = public_path().'/uploads/sample1.jpg';
$name = 'sample1.jpg';
$file = new UploadedFile($path, $name, 'image/png', filesize($path), null, true);
$response = $this->post($this->endpoint, ['file' => $file], $this->setHeaders());
$response->assertStatus(200)
->assertJsonFragment(array("status" => "success"));
}
但問題是,它是從刪除的文件夾,即sample1.jpg
幫助原始文件我出去了。我在這裏錯過了什麼嗎?雖然測試用例運行良好。
您是否對這些文件使用** unset **? –
什麼是未設置..?如果你的意思是刪除。那麼我不明確這樣做 – Dherya
如果你想刪除存儲的文件,然後你必須使用PHP未設置功能刪除它 –