Skip to content

Instantly share code, notes, and snippets.

@SE7ENSKY
Created March 29, 2013 14:34
Show Gist options
  • Save SE7ENSKY/5271222 to your computer and use it in GitHub Desktop.
Save SE7ENSKY/5271222 to your computer and use it in GitHub Desktop.
#!/usr/bin/php
<?php
$domain = $argv[1];
echo preg_replace(
'!s:(\d+):"([^"]*?' . preg_quote($domain) . '[^"]*?)";!Ue',
"'s:'.strlen('$2').':\"$2\";'",
file_get_contents('php://stdin')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment