PHRETS icon indicating copy to clipboard operation
PHRETS copied to clipboard

resolves issued #172

Open Ghostff opened this issue 4 years ago • 1 comments

Due to https://bugs.php.net/bug.php?id=69489, PHP 7.1 and above raises a notice. This PR provides two alternatives.

  1. Using a flag to suppress the error. (Current default behavior)
$config->setOption('suppress_tmp_warn', true);
  1. Explicitly setting a path for unique file creation.
$config->setOption('tmp_path', 'C:\Users\{UserName}\AppData\Local\Temp');

Ghostff avatar Jul 30 '20 03:07 Ghostff

I created a separate pull-request #271 with an alternate solution.

ConnectGrid avatar Aug 11 '20 01:08 ConnectGrid