こちらの環境では削除されるよ
ちなみにその例ではmb_ereg使わなくてもstr_replaceでいいと思うけど

コード
<?php
$text = 'The person said "Working is losing of life."';
echo mb_ereg_replace("\"",'',$text);

結果
The person said Working is losing of life.