root/web/subdomain2path @ 8568
1 |
#!/usr/bin/env php |
---|---|
2 |
<?php
|
3 |
while (($line = fgets(STDIN)) !== false) |
4 |
{
|
5 |
$subdomain = rtrim($line, "\n"); |
6 |
$path = implode("/", array_reverse(explode(".", $subdomain))); |
7 |
print($path."\n"); |
8 |
}
|
9 |
?>
|