fork download
  1. <?php
  2.  
  3. // fetchAllメソッドを実行して一気にレコードを取得したときの2次元配列
  4.  
  5. $rows = array(
  6. 0 => array(
  7. 'name' => 'Taro',
  8. 'email' => 'taro@hoge.jp',
  9. 'url' => 'http://t...content-available-to-author-only...o.jp',
  10. ),
  11. 1 => array(
  12. 'name' => 'John',
  13. 'email' => 'john@hoge.com',
  14. 'url' => 'http://j...content-available-to-author-only...n.com',
  15. ),
  16. 2 => array(
  17. 'name' => 'Bill',
  18. 'email' => 'bill@hoge.com',
  19. 'url' => 'http://b...content-available-to-author-only...l.com',
  20. ),
  21. );
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Standard output is empty