Skip to content

Instantly share code, notes, and snippets.

@hirak
Created February 26, 2014 15:23
Show Gist options
  • Save hirak/9231474 to your computer and use it in GitHub Desktop.
Save hirak/9231474 to your computer and use it in GitHub Desktop.
explode()の挙動がキモい ref: http://qiita.com/Hiraku/items/a58b8aac3f9e55cd1bd5
var_dump(explode(' ', ''));
//array("")
$arr = array();
$str = implode(' ', $arr);
var_dump($str); //(空文字)
$arr = explode(' ', $str);
var_dump($arr); //[''] ←ちょwwww
$arr = array();
$str = implode(' ', $arr);
var_dump($str); //(空文字)
$arr = ($str==='') ? array() : explode(' ', $str);
var_dump($arr); //(空配列)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment