Home > Article > Backend Development > How to remove quotation marks on both sides of a string in php
php method to remove quotes on both sides of a string: first determine whether the CSV file has commas and double quotes; then read the csv file; and finally use the data splitting method to split the code.
php method to remove quotation marks on both sides of a string:
1. When writing a CSV file, you need to first Determine whether there are commas and double quotes, and follow the steps below to execute the appropriate processing code.
[Related learning recommendations: php programming (video)]
2. Method code for reading CSV files .
#3. Data segmentation method code.
#4. Split the data as follows.
5. Commas in double quotation marks are not separated.
Related learning recommendations: Programming video
The above is the detailed content of How to remove quotation marks on both sides of a string in php. For more information, please follow other related articles on the PHP Chinese website!