define('FILE_APPEND', 1); if (!function_exists("file_put_contents")) { function file_put_contents($n, $d, $flag = false) { $mode = ($flag == FILE_APPEND || strtoupper($flag) == 'FILE_APPEND') ? 'a' : 'w'; $f = @fopen($n, $mode); if ($f === false) { return 0; } else { if (is_array($d)) $d = implode($d); $bytes_written = fwrite($f, $d); fclose($f); return $bytes_written; } } }
相关文章
- elementPlus中的嵌套el-dialog弹框中,解决使用custom-class修改样式不生效的问题
- IDEA热部署不生效解决方案(亲测有效)
- springboot aop 不生效原因解决
- 【问题解决】使用docker配置redis主从复制,不生效
- spingMVC aop不生效的解决方式
- SpringCloud 2020.x.x工程bootstrap引导配置不生效的解决方案
- PHP-引入文件(include)后,页面错位,不居中解决办法
- websphere修改jsp不生效的解决办法
- mybatis if标签判断不生效的解决方法
- Centos 修改limits.conf open files后不生效的解决办法