fgetcsv() is a PHP function which parses the line it reads for fields in CSV format and returns an array containing the fields read.

learn more… | top users | synonyms

0
votes
2answers
16 views

fgetcsv no longer working

I have been using this code on a webpage for about 2 years and all of the sudden it started giving me an error. Is there any noticeable reason why?These are lines 116 through 120 that are referenced ...
1
vote
3answers
27 views

Converting csv files data to an array using php str_getcsv function

I have string like which is created using fputcsv Date,Name,Hours 2013-01-02,"Test User",7:59 2013-01-03,"Test User",7:53 2013-01-04,"Test User",8:12 2013-01-07,"Test User",7:56 2013-01-08,"Test ...
0
votes
1answer
28 views

take a tab delimited file and update a MySQL field based on matching rows to a unique field

Trying to piece together fgetcsv questions and answers to get where I need to be but do not grasp the basics enough to get the result I need. The Tab delimited file sample.... ...
-1
votes
1answer
32 views

fgetcsv formatting individual cells [duplicate]

I have a csv file with this data in it date,title,description 01/05/2013,Test,This is a test 03/05/2013,Test2,This is another test I would like to format it like a news article so the html would be ...
-2
votes
0answers
27 views

PHP select only first, middle and last row from CSV file [duplicate]

I have a CSV file being uploaded and parsing the CSV file into a array. What I need to do is grab only the first, middle and last column from the rows and return only that result as the array. The ...
2
votes
1answer
95 views

php select only first, middle and last column from csv file

I have a csv file thats uploaded and I need to determine how many entries are in the csv file and format the first, middle and last columns to a associative array with $header=>$value pairs. I have ...
0
votes
1answer
22 views

str_getcsv not parsing the data correctly

I have a problem with str_getcsv function for PHP. I have this code: <?php $string = '#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=714000,RESOLUTION=640x480,CODECS="avc1.77.30, mp4a.40.34"'; $array ...
1
vote
4answers
4k views

Remove Line From CSV File

I have .csv file with 4 columns. What's the easiest way to remove a line identical with the id of the first column? Here's where I got stuck: if($_GET['id']) { $id = $_GET['id']; $file_handle ...
0
votes
1answer
24 views

Starting position with fgetcsv

I have a script that runs every 20 minutes that imports log data from a CSV into my database. Some log files may have 20 entries and some may have over 400,000. My challenge is this....the log files ...
2
votes
5answers
2k views

Yii - How to upload a csv to save in database?

i'm with some troubles figuring out how to read the CSV file that I upload, probably i'm missing something in my Controller code. public function actionImport() { $model = new Produtos; ...
0
votes
1answer
25 views

php function fgetcsv not work for line have \“”

I have data in phpmyadmin, example: (first row is header) ||from||to||messages|| ||john||andy||meeting now|| ||dony||sherly||Place in \"Jakarta\" , Indonesia, 15412 when I export to csv via ...
2
votes
5answers
3k views

how do i parse a csv file to grab the column names first then the rows that relate to it?

here is my csv column1,column2,column3,column4,column5 column1_row1,column2_row1,column3_row1,column4_row1,column5_row1 column1_row2,column2_row2,column3_row2,column4_row2,column5_row2 ...
0
votes
2answers
54 views

Read times from a file and find the nearest in the future

I'm new to PHP and have I problem right now. I want to make a file with bus times for a day, and want to show a user the nearest bus in the future. Every day there are just 15 buses, so it wouldnt be ...
4
votes
2answers
40 views

fgetcsv(): first column as key

I'm building a simple shop system which takes its products from an array generated by a csv file. My csv is as following: pid;name;color 11149;Miro;"schwarz;weiß;blau;rot;gelb" ...
0
votes
0answers
146 views

UPLOAD CSV with special encoding (fgetcsv)

I have the problem with the php function fgetcsv() . Lets start from the begin . I want to export csv files in ISO encoding and upload csv . With the export csv i dont have problem but with upload ...
0
votes
3answers
161 views

Add each line of CSV file into an array using PHP

I am almost embarrassed to ask this, but I've been trying to accomplish this task for a few hours now. Without a thorough grasp of the fopen or fgetcsv functions, I'm a bit lost. Each example I find ...
1
vote
2answers
48 views

Dismissed characters , null / csv to json file via php

I wanna read csv file via php then save the array in json file. $fp = fopen('images/thermo.csv','r') or die("**! can't open file\n\n"); setlocale(LC_ALL, 'sk_SK.UTF-8'); $i = 0; ...
0
votes
1answer
61 views

Get email attachment cron job in php

Can anyone point me in the right direction on how to use php to grab the attachment from an email? I am already using php to successfully process a rather large .csv file and exucute different actions ...
1
vote
2answers
136 views

Determine .csv delimiter in PHP

Note: I'll start off by saying that I know I'm probably missing something really obvious. I'm in one of those coding hazes where I can't see the simple solution. Issue: I've written a script in PHP ...
0
votes
2answers
133 views

fgetcsv() not working with variable $delimiter from $_POST

I can't get fgetcsv() to work with a variable from $_POST ( delimiter = (string)$_POST['delimiter'];) I works if I specify: $delimiter = "\t"; but not when I use: $delimiter = ...
0
votes
1answer
125 views

fgetcsv not removing quotes

so I have this: $handle = fopen($filepath, 'r'); $row = fgetcsv($handle, null, "\t", '"'); whereby $filepath contains a file with the following text: "\A some text with space." but then when I ...
1
vote
3answers
2k views

Import a CSV file into MySQL using PHP

I'm trying to import CSV data into a MySQL database using the fgetcsv function. if(isset($_POST['submit'])) { $fname = $_FILES['sel_file']['name']; $var = 'Invalid File'; $chk_ext = ...
0
votes
1answer
84 views

getting extra commas and quotes with fgetcsv after it reads first line

I'm trying to import a large csv file that has 100,000 rows into a MySql table. I'm getting the error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL ...
-1
votes
2answers
152 views

read csv contaning arabic and english in php [closed]

welcome im trying to read csv file in php my file contain Arabic data what charset must be use to show correct result ?? echo iconv("???????",'UTF-8',$data[$c]."\0");
0
votes
2answers
114 views

How to AUTOINCREMENT starting from a certain number/offset?

I am running an fgetcsv query to import a bunch of data from a CSV into WordPress. I am wondering how I can start an auto increment from a certain number, for example, from 1000 onwards. ...
0
votes
0answers
96 views

fgetcsv - use enclosure character inside enclosed content

I have a problem with fgetcsv() and the enclosure character. I have a CSV line like this: "13551","Digitaldruck "Blüte x3" ","gelb-weiss" I am using fgetcsv() that way: public function ...
0
votes
2answers
57 views

Weird things about the entries get from fgetcsv() method

My php code is listed below, and the CSV file in the example is as simple as below: Widget1, blue, $10, have stock Widget2, red, $12, out of stock Widget3, green, $14 <?PHP $file_handle = ...
1
vote
1answer
95 views

PHP array search and fgetcsv [closed]

sitting here for hours, but i can't see what the problem is. I've got 1 file: Gross_matching.csv: Actionspiele,77 Strategiespiele,112 And the keywords are "Actionspiele, Strategiespiele". And ...
0
votes
2answers
74 views

Insertion of arrays in to respective excel columns

m having 3 arrays say: $first_array = array('val11','val21','val31'); $Second_array = array('val12','val22','val32'); $third_array = array('val13','val23','val33'); Is it possible to store this ...
1
vote
1answer
226 views

Why does this PHP fgetcsv() display only certain parts of the csv?

I have this PHP: $handle = fopen($_FILES["csvfile"]["tmp_name"], "r"); while (($data = fgetcsv($handle, 5000, ",", '"')) !== FALSE) { echo "<pre>"; print_r($data); echo ...
0
votes
2answers
72 views

How to read a value from 'x'th row and 'y'th column in CSV using PHP?

I am wondering whether it is possible to read a specific value from CSV specifed the row number and column number. Lets say I want to read data from row number 44 and column number K? I dont want to ...
0
votes
3answers
169 views

PHP: Reading specific csv lines into a two-dimensional array

I have a file arranged like so: "url1","info1" "url2","info2" "url3","info3" ... all the way up to "url15","info15" I would like to read the last 10 lines of the file into an array such that ...
0
votes
3answers
2k views

PHP read in specific csv file column as an array

I am new to PHP and would like to be able to read in a csv file which has two columns, one is the number (kind of like a ID) then the other holds a integer value. I have looked up the fgetcsv function ...
0
votes
1answer
102 views

Improve performance for reading CSV file from ZIP?

Do you have any idea how to improve the performance by reading CSV file from a zip file? Firstly it open the zip file, then put the data into a memory and then read it by fgetcsv $zip = new ...
0
votes
1answer
110 views

How to parse a “problematic” CSV in PHP

I've to parse a "problematic" CSV file like this: some text here other line of text, here header1, header2, header3 value1, value2, value3 // data row #1 value1, value2, value3 // data row #2 ...
1
vote
2answers
178 views

How to use fgetcsv to get specific columns from a CSV?

I have an interesting piece of work to complete I have a lot of spreadsheets which I have converted to CSV's - these spreadsheets started out as templates with a set number of columns. Unfortunately ...
-3
votes
2answers
109 views

Convert a string into list of arrays

How do I convert a REQUEST string into arrays in a list like the following? $_REQUEST["InventoryData"] == sku=qty&234444=11&ShirtBig=111&ShirtSmall=101&empty=0 Array ( [0] => sku ...
0
votes
1answer
137 views

fgetcsv utf8 and apostrophe

im getting a weird behavior with this code foreach ($files as $key => $error) { if ($error == UPLOAD_ERR_OK) { $name = $_FILES["excelFiles"]["name"][$key]; ...
4
votes
4answers
2k views

CSV to Array PHP

I know there are a lot of resources out there for putting a CSV into an associative array, but I can't find anything that helps a noob like me do exactly what I want to do. I currently have an ...
2
votes
3answers
266 views

How to combine two csvs/tab delimited into one csv with php?

I have two files one is a tab delimited and one is a csv which is comma seperated and they both get uploaded and I need to combine them into one csv thats sorted...here is my code so far $txt = ...
0
votes
1answer
203 views

fgetcsv line endings

Hi I have a fgetcsv function that reads a CSV file and exports the data into a list. This works, and I have used this function numerous times elsewhere with no problems. The relevant bits of the code ...
0
votes
1answer
512 views

I need PHP help opening a CSV file into an array, altering the data, and then overwriting the original CSV file with the altered data

I need to pull data from a CSV file to use in reporting. However, the exporting software does not have the capability to export it in a useful format. Using PHP I would like to take a CSV file with ...
2
votes
2answers
1k views

problem with fgetcsv( ) and Unicode

i have a code. on localhost i have not problem with reading csv file (with Unicode chars). but when upload code on host output is nothing. why? what is solution? while ...
2
votes
2answers
4k views

How to specify encoding while process csv file in PHP?

<?php $row = 1; $handle = fopen ("test.csv","r"); while ($data = fgetcsv ($handle, 1000, ",")) { $num = count ($data); print "<p> $num fields in line $row: <br>\n"; $row++; ...
1
vote
2answers
2k views

Import Large CSV file into MySQL

I am trying to import a csv file into a mysql table and I currently have a script that is running line by line because I need to hash an id combined with another id as well as format the date for ...
0
votes
1answer
232 views

DomPDF Codeigniter charset not correctly rendered

I have a nifty problem with DomPDF, it does bug-up accented characters. I did everything that Phil Sturgeon suggests on Phil Sturgeon on UTF-8 support for Codeigniter But with the only result that ...
0
votes
1answer
361 views

Reading CSV in Symfony 1.4

I'd my project in Symfony 1.4 (Please keep version in mind) As a new requirement, in admin panel, admin need to upload bulk images. For that, admin will provide a zip file with images and a csv file ...
3
votes
3answers
1k views

Fastest way to read a csv file

I'm looking for a very fast method to read a csv file. My data structure looks like this: timestamp ,float , string ,ip ,string 1318190061,1640851625, lore ipsum,84.169.42.48,appname ...
2
votes
1answer
61 views

FGETCSV documentation flaw

I've been trying to figure what the length parameter in fgetcsv mean? THe documentation states that it is: Must be greater than the longest line (in characters) to be found in the CSV file ...
1
vote
1answer
123 views

PHP issue using fgetcsv and then foreach

Ok, here's the thing. if (!$fp=fopen($file,"r")) echo "The file could not be opened.<br/>"; while (( $data = fgetcsv ( $fp , 1000 , ',')) !== FALSE ) { // here, ...

1 2 3