In this article, we will learn how to display data from a CSV file using PHP’s fgetcsv(), str_getcsv, and SplFileObject functions.
CSV file is a simple file format used to store data with comma-separated values, and each row in it represents a record in the tabular data. To read a CSV file using PHP, we will use the fgetcsv() function which reads a line from a CSV file and returns an array of values representing the CSV data present in that line.
Let us understand this problem through the following example -
The Chinese translation ofIn this example, we will use the fgetcsv() function to read a data CSV file and display the values in tabular form using the HTML table tag.
CSV file used in this example−
Name, Age, City John, 30, New York Mary, 25, Los Angeles Tom, 40, Chicago
How to Display Data from CSV file using PHP? How to Display Data from CSV file using PHP?
'; while (($data = fgetcsv($csvFile, 1000, ",")) !== FALSE) { echo ''; foreach ($data as $value) { echo ' '; } echo ''; fclose($csvFile); ?>' . htmlspecialchars($value) . ' '; } echo '
In this example, we will read a student CSV file containing the student's name, age, and gender and display their data in tabular form using 3 different methods (using the str_getcsv, fgetcsv, and SplFileObject methods).
The Chinese translation ofName,Age,Gender John Doe,25,Male Jane Smith,30,Female Bob Johnson,40,Male Sara Lee,22,Female
How to Display Data from CSV file using PHP? How to Display Data from CSV file using PHP?
"); // Split CSV data into rows echo '
Method 1: str_getcsv
'; echo '
Name | Age | Gender |
---|---|---|
' . htmlspecialchars($value) . ' | '; } echo '
Name | Age | Gender |
---|---|---|
' . htmlspecialchars($value) . ' | '; } echo '
Name | Age | Gender |
---|---|---|
' . htmlspecialchars($value) . ' | '; } echo '
In summary, displaying data from a CSV file using PHP is a simple process, you can use the fgetcsv() function. With the help of HTML tags, we can easily display data in tabular form. By following the examples provided in this article, we learned to read and display data from CSV files in PHP, which can be useful in various applications.
The above is the detailed content of How to extract and display data from CSV files using PHP. For more information, please follow other related articles on the PHP Chinese website!