문제

I successfully create a ppt file using phpPowerpoint..

how can I change the save location?I want to save the file to other folder

Thanks for any help!

도움이 되었습니까?

해결책

When you specify the filename in the call to save

$objPPTXWriter->save('filename.pptx');

simply specify a directory path as well

$objPPTXWriter->save('/path/to/my/directory/filename.pptx');
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top