Cách kiểm tra một địa chỉ có tồn tại hay không
<?php
$test = @fopen("http://download.yahoo.com/dl/msgr75/us/yamsgr75us.exe", "rb");
if ( $test )
{
print "File ok";
}
else
{
print "File not found";
}
?>
Popularity: 5% [?]
<?php
$test = @fopen("http://download.yahoo.com/dl/msgr75/us/yamsgr75us.exe", "rb");
if ( $test )
{
print "File ok";
}
else
{
print "File not found";
}
?>
Popularity: 5% [?]
Bad Behavior has blocked 48 access attempts in the last 7 days.
No comments yet.