Possible Duplicate:
Print array to a file
How can I write the ouput (for example when I use an array), in a file?, I was trying with this:
...
print_r($this->show_status_redis_server());
$status_redis = ob_get_contents();
fwrite($file, $status_redis);
...