Code Igniter を使用しています。DB でクエリを実行した後、次のデータ構造を取得します。
array
'application' =>
array
0 =>
object(stdClass)[19]
public 'app_id' => string '16' (length=2)
public 'app_name' => string 'dddddddd' (length=8)
public 'app_title' => string 'sdfsdf' (length=6)
public 'app_comments' => string 'sdfsdf' (length=6)
public 'active_flg' => string 'N' (length=1)
値にアクセスする1つの方法は
foreach($application as $key => $value)
$value->app_id
しかし、毎回 1 つのレコードしか取得できないことがわかっているので、foreach を使用せずに要素にアクセスしたいと考えています。$application->app_id と $application['app_id']を試しましたが、エラーが発生し続けます。
データに直接アクセスする方法を理解するのを手伝ってくれる人はいますか??