1

配列があります。これvar_dumpがその配列のです。

array (size=2)
  0 => 
    object(stdClass)[266]
      public 'term_id' => string '4' (length=1)
      public 'name' => string 'Test' (length=4)
      public 'slug' => string 'test' (length=4)
      public 'term_group' => string '0' (length=1)
      public 'term_taxonomy_id' => string '4' (length=1)
      public 'taxonomy' => string 'filter' (length=6)
      public 'description' => string '' (length=0)
      public 'parent' => string '0' (length=1)
      public 'count' => string '0' (length=1)
  1 => 
    object(stdClass)[277]
      public 'term_id' => string '5' (length=1)
      public 'name' => string 'test2' (length=5)
      public 'slug' => string 'test2' (length=5)
      public 'term_group' => string '0' (length=1)
      public 'term_taxonomy_id' => string '5' (length=1)
      public 'taxonomy' => string 'filter' (length=6)
      public 'description' => string '' (length=0)
      public 'parent' => string '0' (length=1)
      public 'count' => string '0' (length=1)

次に、その配列をこのように変換したいと思います。

$choices = array(
  array('label' => 'Test','value' => 'test'),
  array('label' => 'test2','value' => 'test2'),
)

注意:このようなキーをchoices配列にマッピングしました

  name key as label
  slug key as value

誰かがこれを達成する方法を教えてもらえますか?

アップデート:

これは私がこれまでに試したことです。

foreach ( $filters as $filter ) { 
$filterarr[] = "array('label' => '". $filter->name ."' ,'value' => '". $filter->slug ."' )"; 
} 
$choices = array($filterarr);

しかし、期待どおりに機能していません。

4

4 に答える 4

1

それを試してみてください

$choices = array();    
$tempArray = array();

for($i=0; $i < count(YOUR_ARRAY); $i++)
{
    $tempArray["label"] = array[$i]->name;
    $tempArray["value"] = array[$i]->slug;

    array_push($choices, $tempArray);
}
于 2013-03-07T17:30:52.590 に答える
1

オブジェクトを型キャストするだけです。そして、以下のように希望の操作を行ってください。

$posts = (array) $yourObject;
$choices = array();
foreach($posts as $post){
   $choices[]['label'] = $post['name'];
   $choices[]['value'] = $post['slug'];
}
于 2013-03-07T17:31:09.200 に答える
0

そのようなものを書くことはできますが、次回は非常に簡単なときに自分で見つけてみてください。

foreach($your_array as $a)
{
    $choices[] = array('label' => $a['label'],
                       'value' => $a['slug']);
}
于 2013-03-07T17:30:45.643 に答える
0

試す;

foreach($array as $object){
   $choices[] = array("label" => $object->name, "value" => $object->slug);
}
于 2013-03-07T17:32:29.720 に答える