File "recv_.php"

Full path: /www/shimooguni/recv/OLD/recv_.php
File size: 260 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Back

<?php
$data = file_get_contents("20181207.txt");
$data = explode( "\n", $data );
$cnt = count( $data );
$fp = fopen("20181207.log","w");
for( $i=0;$i<$cnt;$i++ )
{
	
	$data_ = urldecode($data[$i]);
	print $data_ ."\n";
	fwrite($fp, $data_);
}
fclose($fp);

?>

PHP File Manager