Guest User

Untitled

a guest
Nov 17th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $mappings = [];
  2.  
  3. for($i=0; $i<sizeof($vuzes); $i++) {
  4.  
  5.  
  6. $url = "http://url.com/".$vuzes[$i]["Logo"];
  7. list($width, $height, $type, $attr) = getimagesize($url);
  8.  
  9. $map = [
  10. "logo" => $vuzes[$i]["Logo"],
  11. "height" => $height,
  12. "width" => $width,
  13. ];
  14.  
  15. print($i); var_dump($map);
  16.  
  17. $mappings.push($map);
  18.  
  19.  
  20. }
Add Comment
Please, Sign In to add comment