私のPHPコードは、私がこれを次のようになります配列を取得カンマ区切り文字列への配列ですか?
public function getAllAttributes()
{
$this->dao->select('b_title');
$this->dao->from($this->getTable_buttonsAttr());
$result = $this->dao->get();
if(!$result) {
return array() ;
}
return $result->result();
}
$details = Modelbuttons::newInstance()->getAllAttributes();
$string = implode(', ', $details);
var_dump ($string) ; ?>
さ:
array (size=6)
0 =>
array (size=1)
'b_title' => string 'test 10' (length=12)
1 =>
array (size=1)
'b_title' => string 'test 11' (length=12)
2 =>
array (size=1)
'b_title' => string 'test 12' (length=13)
3 =>
array (size=1)
'b_title' => string 'test 13' (length=8)
4 =>
array (size=1)
'b_title' => string 'test 14' (length=14)
5 =>
array (size=1)
'b_title' => string 'test 15' (length=32)
をどのように私はPHPでこのような文字列にこの配列を変換することができますか?
$out = '10, 11, 12, 13, 14,15';
もこれを試すことができますが、あなたがこれを達成するために試みているものを私たちに表示します。 – Epodax
何か試しましたか?任意のコードplz共有 – devpro
私は文字列 '配列、配列、配列、配列、配列、配列'(長さ= 40)を取得 – Ahmed