GetTable 192 B

1234567891011
  1. #!/usr/local/bin/php
  2. <?php
  3. $tariff=$argv[1];
  4. $tshape=file_get_contents(dirname(__FILE__)."/ts/tshape.dat");
  5. $tshape=unserialize($tshape);
  6. $table=$tshape[$tariff]['table'];
  7. print($table);
  8. ?>