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.
$prefix=array(''=>'');とを$prefix=array(); 正確に使用するはどう違い$prefix=array(''=>'');ますか?
$prefix=array(''=>'');
$prefix=array();
変わりはない。最初のオプションは一度にいくつかの要素を持つ配列を作成し、2 番目のオプションは空の配列を作成します。