php
文章平均质量分 58
我是酷毙程序猿
这个作者很懒,什么都没留下…
展开
-
加解密+ 脱敏函数
// 加密 解密function passport_encrypt($txt, $key = 'liiu') { srand((double)microtime() * 1000000); $encrypt_key = md5(rand(0, 32000)); $ctr = 0; $tmp = ''; for($i = 0;$i < strlen($txt); $i++) { $ctr = $ctr == strlen($e...原创 2021-02-06 11:23:17 · 249 阅读 · 0 评论 -
php大文件读取
function readLocalFile($fileName){ $handle = fopen($fileName, 'r'); $lins = []; while (!feof($handle)) { $lines[] = fgets($handle); } fclose($handle); return $lines;}function readYieldFile($fileName){ $handle = fopen($fileName, 'r'...原创 2021-02-06 11:19:15 · 141 阅读 · 0 评论 -
取出二维数组中某一列的所有值
https://www.cnblogs.com/Steven-shi/p/5897745.html原创 2020-12-21 14:07:49 · 4798 阅读 · 0 评论 -
php实现遍历文件夹及文件
$ROOTADDR=$_SERVER['DOCUMENT_ROOT']."/modules/RefillApplication";$allFileAddrAndFileName=$this->traverseallfiles($ROOTADDR);public function traverseallfiles($accountName){ $resultFilearray=array(); $fileArray=scandir($accountName); fo.原创 2020-08-20 18:36:10 · 203 阅读 · 0 评论 -
php递归获取数组深度
public function getCountArray($arrayStr){ $max_depth=1; foreach ($arrayStr as $key=>$value){ if(is_array($arrayStr)){ $max=$this->getCountArray($value)+1; if($max_depth<$max){ $m.原创 2020-08-19 18:42:37 · 349 阅读 · 0 评论 -
php冒泡排序
$array=array(3,45,43,49,67,77,5656,766,33,54,99);$result=$this->sortAllnumbers($array);public function sortAllnumbers($array){ for ($i=1;$i<count($array)-1;$i++){ for($j=1;$j<count($array)-$i;$j++){ if($array[.原创 2020-08-19 18:41:03 · 84 阅读 · 0 评论 -
Windows PHP 开启opcache的方法
① 添加扩展图一②添加dll路径原创 2020-08-18 12:28:55 · 498 阅读 · 0 评论 -
php 使用到的数组记录
array_values();一维数组键值重置从0开始。1.array_values();一维数组键值重置从0开始。$a=array("a"=>"Cat","b"=>"Dog","c"=>"Horse"); print_r(array_values($a));二维数组的一级键值重置$arr = array("a"=>array('i...原创 2019-05-29 16:02:46 · 192 阅读 · 0 评论 -
文件路径curl进行文件上传
curl "https://api.megvii.com/faceid/v3/ocridcard" –F api_key=<api_key> -F api_secret=<api_secret> –Fimage=@id.jpg -F return_portrait=1原创 2019-05-31 18:42:28 · 1707 阅读 · 0 评论 -
php调试错误
ini_set("display_errors","on");error_reporting(E_ALL);原创 2019-04-24 13:14:27 · 359 阅读 · 0 评论 -
耗时耗内存查询
$t1 = microtime(true); // ... 执行代码 ... $m1 = memory_get_usage(); $t2 = microtime(true); echo '耗时'.round($t2-$t1,3).'秒<br>';...原创 2019-04-17 19:59:12 · 315 阅读 · 0 评论 -
phpmailer邮箱发送
// 引入PHPMailer的核心文件 require_once("../common/PHPMailer-master/src/PHPMailer.php"); require_once("../common/PHPMailer-master/src/SMTP.php"); /* use PHPMailer\PHPMailer; */ // 实例化PHPMail...原创 2019-04-25 20:05:03 · 162 阅读 · 0 评论 -
php爬虫 curl 爬虫 原生爬虫 中国天气网天气爬虫
1.curl 爬虫$url = "http://www.weather.com.cn/weather/101120501.shtml"; $ch = curl_init($url); //初始化会话 curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_USERAGENT, $...原创 2019-04-10 20:55:16 · 621 阅读 · 0 评论 -
阿里云的短信发送使用教程
—— github 地址https://github.com/aliyun/openapi-sdk-php-client/blob/master/docs/1-Installation-CN.md?spm=a2c4g.11186623.2.13.2e474e6aPVvwJc&file=1-Installation-CN.md#%E4%B8%8B%E8%BD%BD%E4%BD%BF%...原创 2019-04-10 20:45:29 · 1069 阅读 · 0 评论 -
nginx 不支持pathinfo 实现tp框架正常运行
在 server 里添加 下面代码就OK了location / {if (!-e $request_filename) {rewrite ^(.*)$ /index.php?s=$1 last; break;} }原创 2019-02-20 18:08:36 · 122 阅读 · 0 评论 -
apache 中实现 laravel框架去掉url中包含的index.php后缀
在 .htaccess 文件内容如下条件时 / 不是在如下条件自测<IfModule mod_rewrite.c> <IfModule mod_negotiation.c> Options -MultiViews </IfModule> RewriteEngine On # Redirect Trailin...原创 2019-02-12 15:14:25 · 1339 阅读 · 0 评论 -
linux升级php至5.6
1 查看终端当前php版本php -v会反馈以下信息:PHP 5.4.35 (cli) (built: Nov 14 2014 07:04:10) Copyright (c) 1997-2014 The PHP Group Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies with Zend OPcache v7.0....原创 2019-02-12 10:06:24 · 170 阅读 · 0 评论 -
Swoole安装
一.SWOOLE下载地址 https://www.swoole.com/安装配置地址 https://blog.csdn.net/nuli888/article/details/51849699?from=singlemessage如果以上版本不是最新的可以下载最新的安装按照以上下载安装下面是其中配置说明Build complete.Don't forget to ru...原创 2019-01-04 11:00:07 · 364 阅读 · 0 评论