Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
arrayPHPの値を置き換える方法
array
Array ([0] => Array ([ss] => k))
の中へ
array("0" => array ("ss" => "k"));
好きな形式を出力するには、独自の関数を作成する必要があります。
組み込み関数を使用した最も近いソリューションはvar_export.
var_export
$array = array(array('ss' => 'k')); var_export($array);
出力:
array ( 0 => array ( 'ss' => 'k', ), )