- add missing support for raw post data (HttpRequest)
[m6w6/ext-http] / docs / examples / extract.php
1 <?php
2
3 if (preg_match_all('/\n- ([^\n]+).*?(\<\?.+?\?\>)/s', file_get_contents($_SERVER['argv'][1]), $matches)) {
4 for ($i = 0; $i < count($matches[0]); $i++) {
5 file_put_contents(preg_replace('/\W/', '_', $matches[1][$i]).".php", $matches[2][$i]."\n");
6 }
7 }
8
9 ?>