这篇文章主要介绍了关于php 文件 创建 剪切 复制 常用的函数,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
<?php header('content-type:text/html;charset=utf-8'); /* * 注 touch 如文件已存在,设定文件的访问和修改时间 如果文件不存在,则会被创建。 * touch(文件名,时间戳); 时间戳默认为当前时间 返回布尔值 * */ // //创建文件 123.txt(如果文件不存在) if(!file_exists('123.txt')){ touch('123.txt'); }; /* * 删除文件unlink(文件名)返回布尔值 * */ //删除文件123.txt(如果文件存在) if(file_exists('123.txt')){ unlink('123.txt'); }; /* * rename重命名文件或剪切文件 * rename(文件名,新文件名) 返回布尔值 * */ if(!file_exists('aaa.txt')){//aaa.text文件不存则创建 touch('aaa.txt'); } rename('aaa.txt','bbb.txt');//把aaa.text 重命名为bbb.text if(!file_exists('test')){//当前目录创建test文件夹 mkdir('test',777); } //DIRECTORY_SEPARATOR 目录分隔符 rename('bbb.txt','test'.DIRECTORY_SEPARATOR.'bbb.txt');//将bbb.text移动到test文件夹*/ /* * copy(路径,目标路径)复制文件 返回布尔值 * 如果目标文件已存在,将会被覆盖。 * * */ copy('test'.DIRECTORY_SEPARATOR.'bbb.txt','bbb.txt'); //将test目录的bbb.txt文件拷贝到当前目录 //拷贝远程图片 要在php.ini 中开启 allow_url_fopen (默认是开启的) copy('http://c.hiphotos.baidu.com/baike/pic/item/91ef76c6a7efce1b27893518a451f3deb58f6546.jpg','./test/a.jpg'); /** * 创建文件方法 * @method createFile * @param string $filename 文件名 * @return bool */ function createFile($filename){ //检测文件是否存在 不存在则创建 if(file_exists($filename)){ return false; } //检测目录是否存在不存在则创建 if(!is_dir(dirname($filename))){ mkdir(dirname($filename)); } //创建文件 touch 创建 或用 file_put_contents 创建 if(touch($filename)){ return true; } /* if(file_put_contents($filename,'')!==false){ return true; }*/ return false; } /** * 删除文件方法 * @method deleteFile * @param string $filename 文件名 * @return bool */ function deleteFile($filename){ //检测文件存在 if(!file_exists($filename) ){ return false; } if(unlink($filename)){ return true; } return false; } /** * 复制文件方法 * @method copyFile * @param string $filename 源文件名 * @param string $dest 目标目录 * @return bool */ function copyFile($filename,$dest){ //检测文件是否存在 if(!file_exists($filename)){ return false; } //检测目标目录是否存在 不存在则创建 if(!is_dir($dest)){ mkdir($dest,0777,true); } //复制后的文件路径 $newFilePath=$dest.DIRECTORY_SEPARATOR.basename($filename); //检测目标路径是否已存在同名文件 if(file_exists($newFilePath)){ return false; } //复制文件 if(copy($filename,$newFilePath)){ return true; }; return false; } /** * 剪切文件方法 * @method cutFile * @param string $filename 源文件名 * @param string $dest 目标目录 * @return bool */ function cutFile($filename,$dest){ //检测文件是否存在 if(!file_exists($filename)){ return false; } //检测目标目录是否存在 不存在则创建 if(!is_dir($dest)){ mkdir($dest,0777,true); } //剪切后的文件路径 $newFilePath=$dest.DIRECTORY_SEPARATOR.basename($filename); //检测目标路径是否已存在同名文件 if(file_exists($newFilePath)){ return false; } //剪切文件 if(rename($filename,$newFilePath)){ return true; }; return false; } /** * 重命名文件方法 * @method renameFile * @param string $oldName 原文件名 * @param string $newName 新文件名 * @return bool */ function renameFile($oldName ,$newName){ //检测文件是否存在 if(!file_exists($oldName)){ return false; } //得到原文件路径 $path=dirname($oldName); //重命名后的文件路径 $newFilePath=$path.DIRECTORY_SEPARATOR.$newName; //检测是否有重名文件 if(file_exists($newFilePath)){ return false; } //重命名(注意是$newName 不是$newFilePath) if(rename($oldName,$newName)){ return true; }; return false; }
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!
相关推荐:
以上是php 文件 创建 剪切 复制 常用的函数的详细内容。更多信息请关注PHP中文网其他相关文章!

tomakephpapplicationsfaster,关注台词:1)useopcodeCachingLikeLikeLikeLikeLikePachetoStorePreciledScompiledScriptbyTecode.2)MinimimiedAtabaseSqueriSegrieSqueriSegeriSybysequeryCachingandeffeftExting.3)Leveragephp7 leveragephp7 leveragephp7 leveragephpphp7功能forbettercodeefficy.4)

到ImprovephPapplicationspeed,关注台词:1)启用opcodeCachingwithapCutoredUcescriptexecutiontime.2)实现databasequerycachingusingpdotominiminimizedatabasehits.3)usehttp/2tomultiplexrequlexrequestsandredececonnection.4 limitsclection.4.4

依赖注入(DI)通过显式传递依赖关系,显着提升了PHP代码的可测试性。 1)DI解耦类与具体实现,使测试和维护更灵活。 2)三种类型中,构造函数注入明确表达依赖,保持状态一致。 3)使用DI容器管理复杂依赖,提升代码质量和开发效率。

databasequeryOptimizationinphpinvolVolVOLVESEVERSEVERSTRATEMIESOENHANCEPERANCE.1)SELECTONLYNLYNESSERSAYCOLUMNSTORMONTOUMTOUNSOUDSATATATATATATATATATATRANSFER.3)

phpisusedforsenderemailsduetoitsbuilt-inmail()函数andsupportiveLibrariesLikePhpMailerandSwiftMailer.1)usethemail()functionforbasicemails,butithasimails.2)butithasimimitations.2)

PHP性能瓶颈可以通过以下步骤解决:1)使用Xdebug或Blackfire进行性能分析,找出问题所在;2)优化数据库查询并使用缓存,如APCu;3)使用array_filter等高效函数优化数组操作;4)配置OPcache进行字节码缓存;5)优化前端,如减少HTTP请求和优化图片;6)持续监控和优化性能。通过这些方法,可以显着提升PHP应用的性能。

依赖性注射(DI)InphpisadesignPatternthatManages和ReducesClassDeptions,增强量产生性,可验证性和Maintainability.itallowspasspassingDepentenciesLikEdenceSeconnectionSeconnectionStoclasseconnectionStoclasseSasasasasareTers,interitationApertatingAeseritatingEaseTestingEasingEaseTeStingEasingAndScalability。

cachingimprovesphpermenceByStorcyResultSofComputationsorqucrouctationsorquctationsorquickretrieval,reducingServerLoadAndenHancingResponsetimes.feftectivestrategiesinclude:1)opcodecaching,whereStoresCompiledSinmememorytssinmemorytoskipcompliation; 2)datacaching datacachingsingMemccachingmcachingmcachings


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

Atom编辑器mac版下载
最流行的的开源编辑器

SublimeText3 英文版
推荐:为Win版本,支持代码提示!

Dreamweaver CS6
视觉化网页开发工具

EditPlus 中文破解版
体积小,语法高亮,不支持代码提示功能

DVWA
Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中