Allow configuring escape for CsvWriter#10
Closed
edsrzf wants to merge 1 commit into
Closed
Conversation
PHP 8.4 deprecates calls to `fputcsv` that don't pass `''` as the `$escape` argument. Without this change, it's impossible to avoid a deprecation warning when using `CsvWriter`. If a new major version of this library is released, it should change the default to empty string to avoid the warning by default.
2 tasks
Contributor
slashrsm
added a commit
that referenced
this pull request
Jul 23, 2026
PHP 8.4 deprecates fputcsv() calls that omit the $escape argument. Add an optional constructor parameter (default '\\' for BC) and pass it through to fputcsv so callers can silence the deprecation and control escape behavior (including empty string for modern "no escape" CSV). Adds PHPUnit coverage that proves escape is applied and that writing works without deprecation exceptions under convertDeprecationsToExceptions. Supersedes #10.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PHP 8.4 deprecates calls to
fputcsvthat don't pass''as the$escapeargument. Without this change, it's impossible to avoid a deprecation warning when usingCsvWriter.If a new major version of this library is released, it should change the default to empty string to avoid the warning by default.