方法一:
<?php
$url = "http://http://github.codeigniter.org.cn/download/CodeIgniter_2.1.2.zip";
$fileExists = @file_get_contents($url, null, null, -1, 1) ? true : false;
echo $fileExists; //返回1,就说明文件存在。
?>方法二:
红金羚企业管理系统 ERP V2.0说明 红金羚系列软件的最新开发作品全部开放源代码,立足于中小企业的管理应用包括企业的 财务,进销存,生产,人力资源,网络办公的全方面管理,简单易用 在1.0的基础上,增加了网络办公,公文流转,财务凭证,资产管理。资源管理。等大量实用功能 管理员账号 用户:admin 密码:admin 本系统功能 在线交流 财务管理 采购管理 销售管理 仓库管理 生产管理 人力资
0
<?php
function check_remote_file_exists($url) {
$curl = curl_init($url); // 不取回数据
curl_setopt($curl, CURLOPT_NOBODY, true);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'GET'); // 发送请求
$result = curl_exec($curl);
$found = false; // 如果请求没有发送失败
if ($result !== false) {
/** 再检查http响应码是否为200 */
$statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
if ($statusCode == 200) {
$found = true;
}
}
curl_close($curl);
return $found;
}
$url = "http://github.codeigniter.org.cn/download/CodeIgniter_2.1.2.zip";
echo check_remote_file_exists($url); // 返回1,说明存在。
?>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号