
`SwooleHttpClient::addFile` 함수를 사용할 때는, 파일 경로를 포함한 파일 객체 대신에 파일 경로만을 전달해야 합니다.
#hostingforum.kr
php
$httpClient->addFile('file', '/path/to/your/file');
또한, `$file` 변수에 업로드할 파일 경로를 포함한 파일 객체를 대신하여, 파일의 경로를 직접 전달하는 방법도 있습니다.
#hostingforum.kr
php
$httpClient->addFile('file', $file->getPathname());
이러한 방법을 통해 `SwooleHttpClient::addFile` 함수를 올바르게 사용할 수 있습니다.
2025-04-03 08:58