Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.29 KB | None | 0 0
  1.         $data = array
  2.         (
  3.             'hours' => array
  4.             (
  5.                 '7<sup>05</sup> - 7<sup>50</sup>',
  6.                 '8<sup>00</sup> - 8<sup>45</sup>',
  7.                 '8<sup>50</sup> - 9<sup>35</sup>',
  8.                 '9<sup>45</sup> - 10<sup>30</sup>',
  9.                 '10<sup>45</sup> - 11<sup>30</sup>',
  10.                 '11<sup>40</sup> - 12<sup>25</sup>',
  11.                 '12<sup>35</sup> - 13<sup>20</sup>',
  12.                 '13<sup>30</sup> - 14<sup>45</sup>',
  13.                 '14<sup>25</sup> - 15<sup>10</sup>',
  14.                 '15<sup>20</sup> - 16<sup>05</sup>',
  15.             ),
  16.             'schedule' => array
  17.             (
  18.                 'Monday' => array
  19.                 (
  20.                     'room' => array
  21.                     (
  22.                         NULL,
  23.                         NULL,
  24.                         '6A',
  25.                         '34',
  26.                         '14',
  27.                         '28/2A',
  28.                         '6',
  29.                         '17',
  30.                         '1',
  31.                         NULL,
  32.                     ),
  33.                     'group' => array
  34.                     (
  35.                         NULL,
  36.                         FEMALE,
  37.                         NULL,
  38.                         NULL,
  39.                         NULL,
  40.                         'A/B',
  41.                         NULL,
  42.                         NULL,
  43.                         NULL,
  44.                         NULL,
  45.                     ),
  46.                     'class' => array
  47.                     (
  48.                         NULL,
  49.                         'PE',
  50.                         'Office Software',
  51.                         'Biology',
  52.                         'Geography',
  53.                         'English/German',
  54.                         'Operating Systems',
  55.                         'Programming',
  56.                         'PO',
  57.                         NULL,
  58.                     ),
  59.                 ),
  60.             'Tuesday' => array
  61.                 (
  62.                     'room' => array
  63.                     (
  64.                         NULL,
  65.                         NULL,
  66.                         '6/8',
  67.                         '28',
  68.                         '26',
  69.                         '32',
  70.                         'Dorm',
  71.                         NULL,
  72.                         '7',
  73.                         NULL,
  74.                     ),
  75.                     'group' => array
  76.                     (
  77.                         NULL,
  78.                         NULL,
  79.                         NULL,
  80.                         NULL,
  81.                         NULL,
  82.                         NULL,
  83.                         NULL,
  84.                         MALE,
  85.                         NULL,
  86.                         FEMALE,
  87.                     ),
  88.                     'class' => array
  89.                     (
  90.                         NULL,
  91.                         NULL,
  92.                         'IT',
  93.                         'Math',
  94.                         'Polish',
  95.                         'Hardware (UTK)',
  96.                         'Religion',
  97.                         'PE',
  98.                         'English for Business',
  99.                         'PE',
  100.                     ),
  101.                 ),
  102.             ),
  103.             'Wednesday' => array
  104.                 (
  105.                     'room' => array
  106.                     (
  107.                         NULL,
  108.                         '35',
  109.                         '10/12',
  110.                         NULL,
  111.                         '6/8',
  112.                         '19',
  113.                         '23',
  114.                         '14',
  115.                         NULL,
  116.                         NULL,
  117.                     ),
  118.                     'group' => array
  119.                     (
  120.                         NULL,
  121.                         NULL,
  122.                         'A/B',
  123.                         NULL,
  124.                         NULL,
  125.                         NULL,
  126.                         NULL,
  127.                         NULL,
  128.                         NULL,
  129.                         NULL,
  130.                     ),
  131.                     'class' => array
  132.                     (
  133.                         NULL,
  134.                         'Biology',
  135.                         'English/German',
  136.                         'Operating Systems',
  137.                         'IT',
  138.                         'English for Business',
  139.                         'Physics',
  140.                         'Class meeting',
  141.                         'Math',
  142.                         NULL,
  143.                     ),
  144.                 ),
  145.             ),
  146.         );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement