Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.19 KB | None | 0 0
  1. // all data sorted by key i.e. subject then by value
  2. $arr = Array
  3. (
  4.     [] => 24
  5.     [all : coexisting] => 1
  6.  
  7.     [arab : bad] => 3
  8.     [arab : evil] => 3
  9.     [arab : good] => 2
  10.     [arab : neutral] => 1
  11.  
  12.     [iran : evil] => 2
  13.     [iran : bad] => 1
  14.  
  15.     [israel : victims] => 25
  16.     [israel : amazing] => 17
  17.     [israel : notvictims] => 8
  18.     [israel : good] => 6
  19.     [israel : neutral] => 5
  20.     [israel : saviors] => 5
  21.     [israel : evil] => 1
  22.  
  23.     [israeli : victims] => 55
  24.     [israeli : amazing] => 24
  25.     [israeli : neutral] => 13
  26.     [israeli : saviors] => 11
  27.     [israeli : good] => 2
  28.     [israeli : notvictims] => 1
  29.  
  30.     [israeliarab : good] => 4
  31.     [israeliarab : amazing] => 1
  32.     [israeliarab : victims] => 1
  33.  
  34.     [jew : victims] => 15
  35.     [jew : good] => 3
  36.     [jew : amazing] => 2
  37.     [jew : neutral] => 1
  38.     [jew : notvictims] => 1
  39.  
  40.     [leftist : evil] => 2
  41.  
  42.     [muslim : good] => 4
  43.     [muslim : amazing] => 1
  44.     [muslim : bad] => 1
  45.  
  46.     [palestine : evil] => 16
  47.     [palestine : bad] => 9
  48.     [palestine : neutral] => 1
  49.  
  50.     [palestinian : evil] => 28
  51.     [palestinian : bad] => 17
  52.     [palestinian : good] => 9
  53.     [palestinian : victims] => 4
  54. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement