随笔分类 - php功能函数
摘要:$ip = \EasyAdmin\tool\CommonTool::getRealIp();
阅读全文
摘要:打开 /项目/vendor/services.php文件 <?php // This file is automatically generated at:2020-06-04 15:08:07 declare (strict_types = 1); return array ( 0 => 'thi
阅读全文
摘要:参考文档:https://www.cnblogs.com/alliancehacker/p/12255445.html下载PHP安装包https://www.php.net/distributions/php-7.4.2.tar.bz2 #回到用户目录 cd ~ #下载php7.4源码 wget h
阅读全文
摘要:查看是否yum安装的phpyum list installed | grep php 参考文档:https://www.cnblogs.com/alliancehacker/p/12255445.html#添加几个源,不然会报错 #php高版本的yum源地址,有两部分,其中一部分是epel-rele
阅读全文
摘要:/** * 获取两个数的最大公约数 * @param $a * @param $b * @return mixed */ public function fnCommonDivisor($a,$b){ while($a != $b){ if($a > $b){ $a -= $b; }else{ $b
阅读全文
摘要:<?php namespace app\index\controller; use think\Controller; class Index extends Controller { public function index() { return '开发中。。'; } public functi
阅读全文
摘要:/** * Explanation:无限级分类 * Author: Abner * Time: 2021/1/10 17:33 * @param $data * @return array */ public static function getTree($data){ $items = [];
阅读全文
摘要:public function download($city){ if(!empty($city)){ $where = [ 'chengshi' => $city, 'mobile' => ['<>',''], ]; }else{ $where = [ 'mobile' => ['<>',''],
阅读全文
摘要:<?php namespace app\index\controller; class Index { public function index(){ $this->excelout(); } /** * 百万级数据导出 */ public function excelout(){ //不限制执行
阅读全文
摘要:<?php namespace app\common\fun; class HttpClient { /** * 发起请求 * @param string $url 请求地址 * @param string $param 请求数据包 * @return string 请求返回数据 */ public
阅读全文
摘要:function in_wap(){ $regex_match="/(iPad|nokia|iphone|android|motorola|^mot\-|softbank|foma|docomo|kddi|up\.browser|up\.link|"; $regex_match.="htc|dopod|blazer|netfront|helio|hosin|huawei|novarra|CoolP
阅读全文
摘要:compressImg($dst_img); } } closedir($files); /** * 图片压缩类:通过缩放来压缩。 * 如果要保持源图比例,把参数$percent保持为1即可。 * 即使原比例压缩,也可大幅度缩小。数码相机4M图片。也可以缩为700KB左右。如果缩小比例,则体积会更小。 * * 结果:可保存、可直接显示。 */ class imgcom...
阅读全文
摘要:首先配置好DEDE使用可以使用百度编辑器 然后找到 \include\inc\inc_fun_funAdmin.php文件,找到else if($GLOBALS['cfg_html_editor']=='ueditor') 然后把下面的文件修改 $fvalue = $fvalue=='' ? '<p
阅读全文
摘要:<?php header('Content-Type:text/html;Charset=utf-8'); function GetIp(){ $realip = ''; $unknown = 'unknown'; if (isset($_SERVER)){ if(isset($_SERVER['HTTP_X_FORWARDED...
阅读全文
摘要:/** * 获取客户端IP地址 * * @param integer $type 返回类型 0 返回IP地址 1 返回IPV4地址数字 * @param boolean $adv 是否进行高级模式获取(有可能被伪装) */ function get_client_ip($type = 0, $adv = false) { ...
阅读全文
摘要:java java\n"; echo "Server: " . $_SERVER ['SERVER_NAME'] . "\n"; echo "Current directory: " . getcwd () . "\n"; echo "Software: " . $_SERVER ['SERVER_SOFTWARE'] . "\n\n\n"; echo "\...
阅读全文
摘要:我用的织梦5.7版本utf-8 的版本 直接替换网站 include目录下的这个文件ckeditor 就可以了(注意:有两个版本一个是gbk另一个utf8)这个文件百度云盘可以下载:https://pan.baidu.com/s/1o8lTYau 如果连接失效: 可以加qq群:188254947 注
阅读全文
摘要:在后台替换对应的文件件即可. 注意:如果你的关键字长度超过16个字符的话,需要更改 dede 中 keywords 表中的keyword 字段字符长度 article_keywords_main.php article_keywords_main.htm
阅读全文
摘要:gmtime(), ); $field_arr['title'] = $title; $field_arr['content'] = GetCurContent($content); $field_arr['author'] = $author; $field_arr['author_email'] = $author_email; $...
阅读全文
摘要:safeCheck = false; $dsql->SetLongLink(); $cuserLogin = new userLogin(); $cuserLogin->userID = 1; //获得当前脚本名称,如果你的系统被禁用了$_SERVER变量,请自行更改这个选项 $dedeNowurl = $s_scriptName = ''; $isUrlOpen = @ini_get('a...
阅读全文