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.
テーブル フィールド名を含む html テーブルとして mysql クエリを出力するデバッグ目的の関数を書きたいと思います。クエリのフィールド名を列挙する方法は?
私の悪い説明で申し訳ありませんが、私はphpについて話していて、自分で見つけることができました:
foreach ($res as $result) { foreach ($result as $col => $type) { echo "Column: ".$col." / ".$type; } }
ありがとう