This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/php | |
| <?php | |
| /** | |
| * PHP script that perform a find and replace in a database dump (tested with | |
| * MySQL) with adjustments of the PHP serialize founded. | |
| * | |
| * Don't forget to escape your "special characters": | |
| * "a$b" -> "a\$b" | |
| * "a"b" -> "a\"b" | |
| * "a`b" -> "a\`b" |