2014-09-24 199 views
0

我有反序列化序列化數據的問題。PHP反序列化序列化數據

數據被序列化並保存在數據庫中。

此數據包含我想要返回給fgetcsv的上傳的.csv網址。

fgetcsv需要一個數組,現在給出了一個字符串,所以我需要反序列化數據,但是這給了我錯誤。

我在網上找到了http://davidwalsh.name/php-serialize-unserialize-issues,但這似乎不起作用。所以我希望有人能告訴我在哪裏出錯:

以下是錯誤:

Notice: unserialize() [function.unserialize]: Error at offset 0 of 1 bytes in /xxx/public_html/multi-csv-upload.php on line 163 

我發現,這意味着在序列化的數據,使文件損壞的反序列化(",',:,;)後某些字符

163線:

jj_readcsv(unserialize ($value[0]),true);` // this reads the url of the uploaded csv and tries to open it. 

下面是使數據序列化的代碼:

update_post_meta($post_id, 'mcu_csv', serialize($mcu_csv)); 

這是WordPress的

下面是輸出的:

echo '<pre>'; 
print_r(unserialize($value)); 
echo '</pre>'; 

Array ( [0] => http://www.domain.country/xxx/uploads/2014/09/test5.csv )

我認爲不應該有什麼不對來這裏的路上。

任何人有一些想法,我可以反序列化這個,所以我可以使用它? 這裏是我做的SOFAR ...

public function render_meta_box_content($post) 
{ 

    // Add an nonce field so we can check for it later. 
    wp_nonce_field('mcu_inner_custom_box', 'mcu_inner_custom_box_nonce'); 

    // Use get_post_meta to retrieve an existing value from the database. 
    $value = get_post_meta($post->ID, 'mcu_images', true); 

    echo '<pre>'; 
     print_r(unserialize($value)); 
    echo '</pre>'; 

    ob_start(); 
    jj_readcsv(unserialize ($value[0]),true); 
    $link = ob_get_contents(); 
    ob_end_clean(); 
    $editor_id = 'my_uploaded_csv'; 

    wp_editor($link, $editor_id); 




    $metabox_content = '<div id="mcu_images"></div><input type="button" onClick="addRow()" value="Voeg CSV toe" class="button" />'; 
    echo $metabox_content; 

    $images = unserialize($value); 

    $script = "<script> 
     itemsCount= 0;"; 
    if (!empty($images)) 
    { 
     foreach ($images as $image) 
     { 
      $script.="addRow('{$image}');"; 
     } 
    } 
    $script .="</script>"; 
    echo $script; 
} 

function enqueue_scripts($hook) 
{ 
    if ('post.php' != $hook && 'post-edit.php' != $hook && 'post-new.php' != $hook) 
     return; 
    wp_enqueue_script('mcu_script', plugin_dir_url(__FILE__) . 'mcu_script.js', array('jquery')); 
} 

回答

1

您試圖訪問序列化的字符串的第一個元素:

jj_readcsv(unserialize ($value[0]),true); 

由於字符串是基本字符數組,你試圖反序列化序列化字符串的第一個字符。

你需要反序列化月1日再訪問數組元素:

//php 5.4+ 
jj_readcsv(unserialize ($value)[0],true); 
//php < 5.4 

$unserialized = unserialize ($value); 
jj_readcsv($unserialized[0],true); 

另外,如果只有過一個元素,不要存放在第一名的數組,只需保存URL字符串,其中犯規需求要序列化:

//save 
update_post_meta($post_id, 'mcu_csv', $mcu_csv[0]); 
//access 
jj_readcsv($value, true); 
+0

謝謝。解釋和它的工作。僅供參考,該數組將填充更多csv URL到文件。 – Interactive 2014-09-24 11:32:26

+0

@Interactive很高興我能幫到你。是的,我希望有一個使用數組的原因,但爲了以防萬一,添加了後面的代碼。 – Steve 2014-09-24 11:36:01