+function parse_options_query_string()
+{
+ $options = array(
+ 'generate_enclosure' => FALSE
+ );
+
+ if (isset($_GET['src_url']))
+ $options['src_url'] = $_GET['src_url'];
+
+ if (isset($_GET['generate_enclosure']))
+ $options['generate_enclosure'] = $_GET['generate_enclosure'] == 1;
+
+ return $options;
+}
+
+
+if (php_sapi_name() != 'cli')
+ $options = parse_options_query_string();
+else
+ $options = parse_options_cli($argv, $argc);
+
+if (!isset($options['src_url']))
+ die(usage($argv));
+
+$url = parse_url($options['src_url']);