Just correcting a typo :)

Moriyoshi Koizumi <[EMAIL PROTECTED]> wrote:

> <?php
> mb_internal_encoding("Shift_JIS");
> $escaped = mb_ereg_replace("([\\\"'\0])", "\\\\1", $sjis_string);
> ?>

should be 

<?php
mb_internal_encoding("Shift_JIS");
$escaped = mb_ereg_replace("([\\\\\"'\0])", "\\\\1", $sjis_string);
?>

Moriyoshi


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to