I had the same problem for baking
I check the problem, it seems like cakePHP doesn't like underscored
table name anymore
これで2時間くらい無駄にした気がする。
I had the same problem for baking
I check the problem, it seems like cakePHP doesn't like underscored
table name anymore
<?php
$t = array(
"a" => "あかさたな",
"b" => array(
"は",
"ま",
"や",
array(
"c" => "らわ"
),
),
);
mb_convert_variables("UTF-8", "EUC-JP", $t);
var_dump($t);
[ cohtan@macbook ~ ] $ php tryconv.php
array(2) {
["a"]=>
string(15) "あかさたな"
["b"]=>
array(4) {
[0]=>
string(3) "は"
[1]=>
string(3) "ま"
[2]=>
string(3) "や"
[3]=>
array(1) {
["c"]=>
string(6) "らわ"
}
}
}
最初ログインできなくて焦った。 いや、ログインはできたのだが、ログイン後に自分のブログの管理画面に遷移できず、新しいブログを作成する画面になってしまったからビビッてしまった。 どうやら、Google+(現在はサービス終了)に紐づいたプロフィールを設定しているとこのような状況に陥る...