Convertir CSV en JSON en utilisant PHP

j'essaie de convertir le fichier CSV en JSON en utilisant PHP.

Voici mon code

<?php 

date_default_timezone_set('UTC');
$today = date("n_j"); // Today is 1/23/2015 -> $today = 1_23

$file_name = $today.'.CSV'; // My file name is 1_23.csv
$file_path = 'C:UsersbhengDesktopqb'.$file_name;
$file_handle = fopen($file_path, "r");

$result = array();

if ($file_handle !== FALSE) {

    $column_headers = fgetcsv($file_handle); 
    foreach($column_headers as $header) {
            $result[$header] = array();

    }
    while (($data = fgetcsv($file_handle)) !== FALSE) {
        $i = 0;
        foreach($result as &$column) {
                $column[] = $data[$i++];
        }
    }
    fclose($file_handle);
}

// print_r($result); // I see all data(s) except the header

$json = json_encode($result);
echo $json;

?>

print_r($result); // je vois toutes les données(s)

Puis-Je json_encode($result); et a essayé de l'afficher, mais rien ne s'affiche à l'écran. Tout ce que je vois c'est l'écran blanc, et le message d'erreur 0.

je fais quelque chose de mal ? Quelqu'un peut-il m'aider ?

résultat ajouté de print_r($result);

Array (
    [Inventory] => Array (
        [0] => bs-0468R(20ug)
        [1] => bs-1338R(1ml)
        [2] => bs-1557G(no bsa)
        [3] => bs-3295R(no BSA)
        [4] => bs-0730R-Cy5"
        [5] => bs-3889R-PE-Cy7"
        [6] => 11033R
        [7] => 1554R-A647
        [8] => 4667
        [9] => ABIN731018
        [10] => Anti-DBNL protein 

        .... more .... 
18
demandé sur iori 2015-01-23 23:20:44

7 réponses

Essayez comme ceci:

$file="1_23.csv";
$csv= file_get_contents($file);
$array = array_map("str_getcsv", explode("\n", $csv));
$json = json_encode($array);
print_r($json);
56
répondu Whirlwind 2015-01-23 20:31:08

Vous pouvez essayer de cette façon.

  <?php

function csvtojson($file,$delimiter)
{
    if (($handle = fopen($file, "r")) === false)
    {
            die("can't open the file.");
    }

    $csv_headers = fgetcsv($handle, 4000, $delimiter);
    $csv_json = array();

    while ($row = fgetcsv($handle, 4000, $delimiter))
    {
            $csv_json[] = array_combine($csv_headers, $row);
    }

    fclose($handle);
    return json_encode($csv_json);
}


$jsonresult = csvtojson("./doc.csv", ",");

echo $jsonresult;
6
répondu Renjith VR 2017-08-02 10:49:55

j'ai rencontré un problème similaire, j'ai fini par l'utiliser pour convertir récursivement les données en UTF-8 sur un tableau avant de les encoder en JSON.

function utf8_converter($array)
{
    array_walk_recursive($array, function(&$item, $key){
        if(!mb_detect_encoding($item, 'utf-8', true)){
                $item = utf8_encode($item);
        }
    });

    return $array;
} 

à partir de: http://nazcalabs.com/blog/convert-php-array-to-utf8-recursively/

3
répondu Samwise 2015-04-16 00:26:24

si vous convertissez un fichier CSV dynamique, vous pouvez passer L'URL à travers un paramètre (url=http://example.com/some.csv) et il va vous montrer les plus up-to-date de la version:

<?php

// Lets the browser and tools such as Postman know it's JSON
header( "Content-Type: application/json" );

// Get CSV source through the 'url' parameter
if ( isset( $_GET['url'] ) ) {
    $csv = explode( "\n", file_get_contents( $_GET['url'] ) );
    $index = str_getcsv( array_shift( $csv ) );
    $json = array_map(
        function ( $e ) use ( $index ) {
            return array_combine( $index, str_getcsv( $e ) );
        }, $csv
    );
}
else {
    $json = "Please set the path to your CSV by using the '?url=' query string.";
}

// Output JSON
echo json_encode( $json );
2
répondu Ethan Jinks O'Sullivan 2017-08-31 20:46:50

données.csv

Jeu,Des Compétences

Chasseur de trésor, pilipala!--7-->
Lance-roquettes, bibobibo!--7-->
Moteur fusée, hehehohoho

convertir avec le nom de la colonne, c'est comment je le fais.

csv2json.php

<?php
if (($handle = fopen("data.csv", "r")) !== FALSE) {
    $csvs = [];
    while(! feof($handle)) {
       $csvs[] = fgetcsv($handle);
    }
    $datas = [];
    $column_names = [];
    foreach ($csvs[0] as $single_csv) {
        $column_names[] = $single_csv;
    }
    foreach ($csvs as $key => $csv) {
        if ($key === 0) {
            continue;
        }
        foreach ($column_names as $column_key => $column_name) {
            $datas[$key-1][$column_name] = $csv[$column_key];
        }
    }
    $json = json_encode($datas);
    fclose($handle);
    print_r($json);
}

Le résultat de sortie

[
    {
        "Game": "Treasure Hunter",
        "Skill": "pilipala"
    },
    {
        "Game": "Rocket Launcher",
        "Skill": "bibobibo"
    },
    {
        "Game": "Rocket Engine",
        "Skill": "hehehohoho"
    }
]
1
répondu Kevin Khew 2017-09-30 15:45:02

solution alternative qui utilise une méthode similaire à celle de @Whirlwind mais renvoie un résultat JSON plus standard (avec des champs nommés pour chaque objet / enregistrement):

// takes a string of CSV data and returns a JSON representing an array of objects (one object per row)
function convert_csv_to_json($csv_data){
    $flat_array = array_map("str_getcsv", explode("\n", $csv_data));

    // take the first array item to use for the final object's property labels
    $columns = $flat_array[0];

    for ($i=1; $i<count($flat_array)-1; $i++){
        foreach ($columns as $column_index => $column){
            $obj[$i]->$column = $flat_array[$i][$column_index];
        }
    }

    $json = json_encode($obj);
    return $json; // or just return $obj if that's a more useful return value
}
1
répondu Ian Miller 2017-10-27 21:58:45

vous pouvez vérifier s'il y a eu une erreur lors de l'encodage JSON en utilisant json_last_error (). Pourriez-vous s'il vous plaît essayer cette première?

-1
répondu SArnab 2015-01-23 20:31:25