Skip to content

Instantly share code, notes, and snippets.

@alexkunin
Last active December 20, 2015 21:19
Show Gist options
  • Save alexkunin/6197104 to your computer and use it in GitHub Desktop.
Save alexkunin/6197104 to your computer and use it in GitHub Desktop.
<?php
$url = "https://docs.google.com/...";
$rows = array_map(
'str_getcsv',
explode(
"\n",
`wget --no-check-certificate -O - -nv -q "$url"`
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment