- add missing support for raw post data (HttpRequest)
[m6w6/ext-http] / docs / examples / extract.php
diff --git a/docs/examples/extract.php b/docs/examples/extract.php
new file mode 100644 (file)
index 0000000..32aa173
--- /dev/null
@@ -0,0 +1,9 @@
+<?php
+
+if (preg_match_all('/\n- ([^\n]+).*?(\<\?.+?\?\>)/s', file_get_contents($_SERVER['argv'][1]), $matches)) {
+       for ($i = 0; $i < count($matches[0]); $i++) {
+               file_put_contents(preg_replace('/\W/', '_', $matches[1][$i]).".php", $matches[2][$i]."\n");
+       }
+}
+
+?>