結果を単純な配列として取得するCakePhpRead関数
$result = $this->Model->read('id, name, title', $id);
結果は次のようになります
Array
(
[Model] => Array
(
[id] => 1
[name] => test
[title] => New Head title
)
)
以下のように、クエリから直接結果配列を取得する方法はありますか
Array
(
[id] => 1
[name] => test
[title] => New Head title
)
変数の一時ストレージを使用せずに。