function omega_tools_replace_contents in Omega Tools 7.3
@todo
1 call to omega_tools_replace_contents()
- omega_tools_rewrite_recursive in ./
omega_tools.module - @todo
File
- ./
omega_tools.module, line 334
Code
function omega_tools_replace_contents($file, $search, $replace) {
if (is_file($file) && filesize($file) > 0) {
$before = file_get_contents($file);
if ($before != ($after = str_replace($search, $replace, $before))) {
file_unmanaged_save_data($after, $file, FILE_EXISTS_REPLACE);
}
}
}