编程爱好者之家
如果你想列出目录下的所有文件,使用以下代码即可: function listDirFiles($DirPath){ if($dir = opendir($DirPath)){ while(($file = readdir($dir))!== false){ if(!is_dir($DirPath.$file)) { echo "filename: $file<br />"; } } } } 使用方法如下: listDirFiles('home/some_folder/');
TP5利用phpforword生成word表格文档
thinkphp5.1生成xml
PHP阿里云短信接口发送短信
PHP DES加密解密类
通过QQ互联实现网站第三方登录
qq互联用PHP SDK获取了token和openid 调用api的get_user_info方法出错解决办法
php做可多选择的checkbox日历
PHP中AES加密解密类
PHP生成动态二维码类库phpqrcode
phpmailer发送163,yeah邮箱
关于我们 | 联系我们
Copyright © 2018-2023, All Rights Reserved. 编程爱好者之家 版权所有 豫ICP备14023852号