array.php 564 B

123456789101112131415161718
  1. <?php
  2. $table = new swoole_table(1024);
  3. $table->column('id', swoole_table::TYPE_INT);
  4. $table->column('name', swoole_table::TYPE_STRING, 64);
  5. $table->column('num', swoole_table::TYPE_FLOAT);
  6. $table->create();
  7. $table['apple'] = array('id' => 145, 'name' => 'iPhone', 'num' => 3.1415);
  8. $table['google'] = array('id' => 358, 'name' => "AlphaGo", 'num' => 3.1415);
  9. $table['microsoft']['name'] = "Windows";
  10. $table['microsoft']['num'] = '1997.03';
  11. var_dump($table['apple']);
  12. var_dump($table['microsoft']);
  13. $table['google']['num'] = 500.90;
  14. var_dump($table['google']);