Advertisement
Guest User

(PHP) Undefined Index from existing keys in getMulti result

a guest
Mar 21st, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1.  
  2. Array
  3. (
  4. [testKey] => testVal testKey
  5. [testKey1] => testVal testKey1
  6. )
  7.  
  8.  
  9. result key: testKey ; result value: testVal testKey
  10. string(7) "testKey"
  11. multiResult[testKey]: NULL
  12.  
  13. result key: testKey1 ; result value: testVal testKey1
  14. string(8) "testKey1"
  15. multiResult[testKey1]: NULL
  16.  
  17.  
  18.  
  19. ------
  20.  
  21. query key: testKey
  22. string(7) "testKey"
  23. NULL
  24. query key: testKey1
  25. string(8) "testKey1"
  26. NULL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement