CodeIgniterを使用して作成したアプリケーションにcsvまたはxlsのインポートを実装する必要があります。このためのライブラリはありますか?任意の提案が高く評価されました。CodeIgniterのCSVインポートライブラリ
答えて
これは簡単な方法です。私は人々が何をすべきか分からないが、私は
これは私のCSVリーダーライブラリです
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
class CSVReader {
var $fields; /** columns names retrieved after parsing */
var $separator = ';'; /** separator used to explode each line */
var $enclosure = '"'; /** enclosure used to decorate each field */
var $max_row_size = 4096; /** maximum row size to be used for decoding */
function parse_file($p_Filepath) {
$file = fopen($p_Filepath, 'r');
$this->fields = fgetcsv($file, $this->max_row_size, $this->separator, $this->enclosure);
$keys_values = explode(',',$this->fields[0]);
$content = array();
$keys = $this->escape_string($keys_values);
$i = 1;
while(($row = fgetcsv($file, $this->max_row_size, $this->separator, $this->enclosure)) != false) {
if($row != null) { // skip empty lines
$values = explode(',',$row[0]);
if(count($keys) == count($values)){
$arr = array();
$new_values = array();
$new_values = $this->escape_string($values);
for($j=0;$j<count($keys);$j++){
if($keys[$j] != ""){
$arr[$keys[$j]] = $new_values[$j];
}
}
$content[$i]= $arr;
$i++;
}
}
}
fclose($file);
return $content;
}
function escape_string($data){
$result = array();
foreach($data as $row){
$result[] = str_replace('"', '',$row);
}
return $result;
}
}
?>
とコントローラメソッド
function readExcel()
{
$this->load->library('csvreader');
$result = $this->csvreader->parse_file('Test.csv');
$data['csvData'] = $result;
$this->load->view('view_csv', $data);
}
これを使用すると、これはビュー
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width = "10%">ID</td>
<td width = "20%">NAME</td>
<td width = "20%">SHORT DESCRIPTION</td>
<td width = "30%">LONG DESCRIPTION</td>
<td width = "10%">STATUS</td>
<td width = "10%">PARENTID</td>
</tr>
<?php foreach($csvData as $field){?>
<tr>
<td><?php echo $field['id']?></td>
<td><?php echo $field['name']?></td>
<td><?php echo $field['shortdesc']?></td>
<td><?php echo $field['longdesc']?></td>
<td><?php echo $field['status']?></td>
<td><?php echo $field['parentid']?></td>
</tr>
<?php }?>
</table>
です参照番号Here
これはraheelシャンの受け入れ答えの改良版である - 私は彼の答えを編集したが、私の編集が拒否された、しかし、それは重要な変化です...
各データ行を解析すると、上explode()
を使用するのは賢明ではありませんカンマはカンマを含む引用符で囲まれた文字列を処理しません。部分文字列の中に休憩にこれらの文字列を爆発し$values
に余分な配列要素を与えるので、このチェックは失敗します。
if (count($keys) == count($values)) {
代わりに、PHPはこれを処理する専用のメソッドを持っています。 str_getcsv()。私はそれに応じて元の応答コードを更新しました。
CSVリーダーライブラリ:
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class CSVReader {
var $fields;/** columns names retrieved after parsing */
var $separator = ';';/** separator used to explode each line */
var $enclosure = '"';/** enclosure used to decorate each field */
var $max_row_size = 4096;/** maximum row size to be used for decoding */
function parse_file($p_Filepath) {
$file = fopen($p_Filepath, 'r');
$this->fields = fgetcsv($file, $this->max_row_size, $this->separator, $this->enclosure);
$keys = str_getcsv($this->fields[0]);
$i = 1;
while (($row = fgetcsv($file, $this->max_row_size, $this->separator, $this->enclosure)) != false) {
if ($row != null) { // skip empty lines
$values = str_getcsv($row[0]);
if (count($keys) == count($values)) {
$arr = array();
for ($j = 0; $j < count($keys); $j++) {
if ($keys[$j] != "") {
$arr[$keys[$j]] = $values[$j];
}
}
$content[$i] = $arr;
$i++;
}
}
}
fclose($file);
return $content;
}
}
?>
コントローラ方法:
function readExcel() {
$this->load->library('csvreader');
$result = $this->csvreader->parse_file('Test.csv');
$data['csvData'] = $result;
$this->load->view('view_csv', $data);
}
そして、これが図である。
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="10%">ID</td>
<td width="20%">NAME</td>
<td width="20%">SHORT DESCRIPTION</td>
<td width="30%">LONG DESCRIPTION</td>
<td width="10%">STATUS</td>
<td width="10%">PARENTID</td>
</tr>
<?php foreach ($csvData as $field) { ?>
<tr>
<td><?php echo $field['id'] ?></td>
<td><?php echo $field['name'] ?></td>
<td><?php echo $field['shortdesc'] ?></td>
<td><?php echo $field['longdesc'] ?></td>
<td><?php echo $field['status'] ?></td>
<td><?php echo $field['parentid'] ?></td>
</tr>
<?php } ?>
</table>
まあ、私はちょうどajmedway年代修正、私を気にしませんTSVやパイプで区切られたファイルを使用してデータを取得したい場合に備えて区切り文字を含むようにします。あなたは平凡な古いCSVを望むならば、彼はちょうどいいです。
class CSVReader {
var $fields;/** columns names retrieved after parsing */
var $separator = ';';/** separator used to explode each line */
var $enclosure = '"';/** enclosure used to decorate each field */
var $max_row_size = 4096;/** maximum row size to be used for decoding */
function parse_file($p_Filepath, $delimiter = FALSE) {
$file = fopen($p_Filepath, 'r');
$this->fields = fgetcsv($file, $this->max_row_size, $this->separator, $this->enclosure);
if ($delimiter==FALSE)
{
$keys = str_getcsv($this->fields[0]);
$i = 1;
while (($row = fgetcsv($file, $this->max_row_size, $this->separator, $this->enclosure)) != false) {
if ($row != null) { // skip empty lines
$values = str_getcsv($row[0]);
if (count($keys) == count($values)) {
$arr = array();
for ($j = 0; $j < count($keys); $j++) {
if ($keys[$j] != "") {
$arr[$keys[$j]] = $values[$j];
}
}
$content[$i] = $arr;
$i++;
}
}
}
}
else{
$keys = str_getcsv($this->fields[0],$delimiter);
$i = 1;
while (($row = fgetcsv($file, $this->max_row_size, $this->separator, $this->enclosure)) != false) {
if ($row != null) { // skip empty lines
$values = str_getcsv($row[0],$delimiter);
if (count($keys) == count($values)) {
$arr = array();
for ($j = 0; $j < count($keys); $j++) {
if ($keys[$j] != "") {
$arr[$keys[$j]] = $values[$j];
}
}
$content[$i] = $arr;
$i++;
}
}
}
}
fclose($file);
return $content;
}}?>
$ delimiterをFALSEに設定していてステータスをチェックしていないので、これは間違っています($ delimiter = FALSE)。 if($ delimiter == FALSE) – Johnish
おっと!ごめんなさい。ルーキーミス。ありがとう@ジョナッシュ。すぐに修正します。 –
これは...コントローラに
クラスCSVReader {
function csv_to_array($Filepath)
{
//Get csv file content
$csvData = file_get_contents($Filepath);
//Remove empty lines
$csvData = preg_replace("/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/", "\r\n", $csvData);
//String convert in array formate and remove double quote(")
$array = array();
$array = $this->escape_string(preg_split('/\r\n|\r|\n/', $csvData));
$new_content_in_array = array();
if($array)
{
//Get array key
$array_keys = array();
$array_keys = array_filter(array_map('trim', explode(';',$array[0])));
//Get array value
$array_values = array();
for ($i=1;$i<count($array);$i++)
{
if($array[$i])
{
$array_values[] = array_filter(array_map('trim', explode(';',$array[$i])));
}
}
//Convert in associative array
if($array_keys && $array_values)
{
$assoc_array = array();
foreach ($array_values as $ky => $val)
{
for($j=0;$j<count($array_keys);$j++){
if($array_keys[$j] != "" && $val[$j] != "" && (count($array_keys) == count($val)))
{
$assoc_array[$array_keys[$j]] = $val[$j];
}
}
$new_content_in_array[] = $assoc_array;
}
}
}
return $new_content_in_array;
}
function escape_string($data){
$result = array();
foreach($data as $row){
$result[] = preg_replace("/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/", "", str_replace('"', '',$row));
}
return $result;
}
}>
コール空行と余分なスペースとタブのための改良されたバージョンである:
$this->load->library('csvreader');
$import_csv_data = $this->csvreader->csv_to_array($path);
print_r($import_csv_data);
exit;
- 1. インポートライブラリ
- 2. ケーキPHPのインポートライブラリ
- 3. codeigniter csv download
- 4. Meteor(NPM)のインポートライブラリjqGrid
- 5. イオン2インポートライブラリ
- 6. Codeigniter- CSVの問題にエクスポート
- 7. Pythonのインポートライブラリが、未使用
- 8. インポートライブラリのミュートPytestライブラリ出力
- 9. 推移的には、インポートライブラリから他のインポートライブラリのインタフェースを必要と
- 10. codeigniterからのCSVエクスポートとインポート
- 11. 静的ライブラリv.s. Windowsプラットフォームのインポートライブラリ
- 12. Visual Studio 2005のPythonインポートライブラリにリンクする
- 13. CodeIgniter 3でCSVファイルをアップロードする
- 14. MinGWツールでMSVCインポートライブラリを作成する
- 15. 共有インポートライブラリをインストールできますか?
- 16. CodeIgniterで言語ファイルのコンテンツをCSVにエクスポートする方法は?
- 17. CSVとしてのデータをCodeIgniterでエクスポートする
- 18. インポートライブラリに静的に使用されるのはなぜ
- 19. インポートライブラリはどのように正確に動作しますか?
- 20. Go:インポートライブラリとCライブラリの間で競合するタイプ
- 21. jquery ajaxとcodeigniterを使用してcsvファイルをアップロード
- 22. Codeigniterで配列をCSVにエクスポートするには?
- 23. codeigniterでcsvに静的な値を追加する方法
- 24. Jupyterインポートライブラリを使用していますか?ここで
- 25. どのようにインポートライブラリ(.lib)とDLLをVisual C++でビルドするのですか?
- 26. codeigniterを使用してcsvファイルのデータをmysqlデータベースにインポートする方法は?
- 27. CodeigniterのURLを使って画像をアップロードする(CSVファイルを使用)
- 28. Codeigniter AjaxはCodeIgniterのテーブル
- 29. 作成したDLLとインポートライブラリを別々のディレクトリに配置する
- 30. あなたのサーバとインポートライブラリでPythonスクリプトを実行するには
Thx Raheel、これを実装してcsvをデータベースにも入力しましたか? –
はい '$ result'をデータベーステーブルに渡すか、必要に応じて配列を作成してください。 –