web-dev-qa-db-ja.com

多次元Post Metaの単一の値を更新するにはどうすればいいですか?

多次元配列として格納されたPost Meta Dataにはいくつかの値があります。それらのデータの一部を更新したいのですが。

これは<?php the_meta(); ?>を使って表示されたPost Meta値です。

voter: a:1:{s:5:"voter";a:5:
     {s:7:"post_id";s:6:"219585";s:8:"voter_id";s:4:"1540";s:8:"voter_ip";s:13:"182.4
     8.238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:1:"1";}}, 

     a:1:{s:5:"voter";a:5:          
     {s:7:"post_id";s:6:"219585";s:8:"voter_id";s:3:"832";s:8:"voter_ip";s:13:"182.48
     .238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:2:"-1";}}, 

     a:1:{s:5:"voter";a:5:
     {s:7:"post_id";s:6:"219585";s:8:"voter_id";s:2:"10";s:8:"voter_ip";s:13:"182.48.
     238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:1:"1";}}

今度はvoteまたはvoter_ipを更新したいと思います。ここでuser_idは832または1540です。update_post_meta()を使用してみましたが、すべてを更新しました。

それでは、どのように多次元配列に格納された単一値のポストメタを更新するのでしょうか。

更新:

the-meta()を使った配列

voter: a:1:{s:5:"voter";a:5:{s:7:"post_id";s:6:"219585";s:8:"voter_id";s:3:"832";s:8:"voter_ip";s:13:"182.48.238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:1:"1";}}, 
 a:1:{s:5:"voter";a:5:{s:7:"post_id";s:6:"219585";s:8:"voter_id";s:4:"1540";s:8:"voter_ip";s:13:"182.48.238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:2:"-1";}}, , , 
a:1:{s:5:"voter";a:5:{s:7:"post_id";s:6:"219585";s:8:"voter_id";s:3:"832";s:8:"voter_ip";s:13:"182.48.238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:1:"1";}}, 
a:1:{s:5:"voter";a:5:{s:7:"post_id";s:6:"219585";s:8:"voter_id";s:4:"1540";s:8:"voter_ip";s:13:"182.48.238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:2:"-1";}}

print_r()を使った配列

Array( [0] => Array ( [voter] => Array ( [post_id] => 219585 [voter_id] =>
832 [voter_ip] => 182.48.238.86 [author_id] => 1540 [vote] => 1 ) ) [1] =>
Array ( [voter] => Array ( [post_id] => 219585 [voter_id] => 1540 [voter_ip]
=> 182.48.238.86 [author_id] => 1540 [vote] => -1 ) ) [2] => [3] => [4] =>
Array ( [voter] => Array ( [post_id] => 219585 [voter_id] => 832 [voter_ip]
=> 182.48.238.86 [author_id] => 1540 [vote] => 1 ) ) [5] => Array ( [voter] 
=> Array ( [post_id] => 219585 [voter_id] => 1540 [voter_ip] => 
182.48.238.86 [author_id] => 1540 [vote] => -1 ) )) 
3
Ramesh Pardhi

配列を取得してそれをループ処理するには、データのシリアル化を解除する必要があります。

$userid = 832; // or 1540
$votes = get_post_meta($postid,'voter');
$votes = maybe_unserialize($votes);

if (is_array($votes)) {
    // votes is the array, key is numeric index, vote is subarray
    foreach ($votes as $key => $vote) {
         // subarray values are in another array with key 'voter'
         if ($vote['voter']['voter_id'] == $userid) {
             $votes[$key]['voter']['vote'] = $newvote;
             $votes[$key]['voter']['voter_ip'] = $newvoterip;
         }                 
    }
    update_post_meta($postid,'voter',$voter);
}
1
majick