header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=index.php');
header('Content-Length: ' . filesize(__FILE__));
readfile(__FILE__);
exit;
border-top: 5px solid #fff;
margin-top: -5px;
border-top: 5px solid transparent;
border-top: 5px solid #fff;
mixed microtime ([ bool $get_as_float = false ] )$get_as_float появился в PHP5,
get_as_float Если указано и установлено в TRUE, microtime() возвратит float вместо string, как описано в разделе возвращаемых значений ниже.
There are a few pitfalls to be aware of. Before PHP version 5.1.0, instanceof would call __autoload() if the class name did not exist. In addition, if the class was not loaded, a fatal error would occur. This can be worked around by using a dynamic class reference, or a string variable containing the class name: