<?php unlink(string $filename, ?resource $context = null): bool
<?php if ('Linux' === PHP_OS) { $this->fifoPath = tempnam(sys_get_temp_dir(), 'react-'); unlink($this->fifoPath); posix_mkfifo($this->fifoPath, 0600);
<?php public function tearDownFile() { if (file_exists($this->fifoPath)) { unlink($this->fifoPath); } }
<?php $this->fifoPath = tempnam(sys_get_temp_dir(), 'react-'); unlink($this->fifoPath);