PHP

Notes on intercepting functions for PHP thieves


The interception function


function cut($file,$from,$end){
$message=explode($from,$file);
$message=explode($end,$message[1]);
return $message[0];

The core function


$fp = @fopen($url, "r");
$file = file_get_contents($url);/