• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    PHP fclose函数用法总结

    php fclose()函数 语法

    作用:关闭一个打开文件

    语法:

    fclose(file)

    参数:

    file 必需。规定要关闭的文件。

    说明:如果成功则返回 true,否则返回 false。文件指针必须有效,并且是通过 fopen() 或 fsockopen() 成功打开的。

    php fclose()函数 示例

    ?php
    $file = fopen("./test.txt","r");
    echo fclose($file);
    ?>

    PHP Warning: fclose(): 怎么解决

    我把r换成了r+,把w换成w+.
    $file_name = './inc/const.php'; //要替换操作的文件
    @$fp = fopen($file_name,'r+'); //打开要替换的文件
    @$conf_file = fread($fp,filesize($file_name));
    $conf_file = preg_replace("/httpurl\s*\=\s(\'|")(.*?)("|')/","httpurl = "" . $httpurl. """,$conf_file);
    $conf_file = preg_replace("/databasePrefixs*=s('|\")(.*?)(\"|')/","databasePrefix = \"" . $databasePrefix. "\"",$conf_file);
    fclose(@$fp);
    @$fp = fopen($file_name,'w+');
    $fw = fwrite($fp, trim($conf_file));
    fclose($fp);
    这样应该可以,否则把@去掉.

    您可能感兴趣的文章:
    • php file_put_contents()功能函数(集成了fopen、fwrite、fclose)
    上一篇:PHP filesize函数用法浅析
    下一篇:PHP fopen函数用法实例讲解
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    PHP fclose函数用法总结 PHP,fclose,函数,用法,总结,