We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When utilizing UV expansion, the putContents function cannot override the file content.
use React\Filesystem\Factory; use React\Filesystem\Node\FileInterface; require 'vendor/autoload.php'; file_put_contents(__DIR__.'/a.text', '12345678'); Factory::create()->detect(__DIR__.'/a.text')->then(static function (FileInterface $file) { return $file->putContents('876'); })->then(static function ($result): void { var_export([$result]); })->done(); // file content 87645678
The text was updated successfully, but these errors were encountered:
fix #118
Sorry, something went wrong.
No branches or pull requests
When utilizing UV expansion, the putContents function cannot override the file content.
The text was updated successfully, but these errors were encountered: