使用php独有的array_map函数遍历清除数组中所有字符串的两端空格/** * Trims a entire array recursivly. * * @author Jonas John * @version 0.2 * @link http://www.jonasjohn.de/snippets/p……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2199浏览 0评论1955个赞
交换两个变量的值在所有语言中都是最基础的算法,一般都需要一个临时变量,此php代码只用一行实现这个功能,虽然代码只有一行,但是php内部做的工作应该一点也不少list($a,$b) = array($b,$a);……继续阅读 » 水墨上仙 4年前 (2021-01-15) 3059浏览 0评论2297个赞
一个自定义的php数组元素随机调换的函数,php已经有一个内置的同样功能的函数shuffle($Array),这个代码权当参考// I noticed that there is already a built-in function that// does the same - so don't use mine ;-)//// --……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2364浏览 0评论2634个赞
这个php函数用来删除文件中的重复行,还可以指定是否忽略大小写,和指定换行符/** * RemoveDuplicatedLines * This function removes all duplicated lines of the given text file. * * @param string * @param bo……继续阅读 » 水墨上仙 4年前 (2021-01-15) 3107浏览 0评论1387个赞
删除数组里的所有空值元素,包含空字符串,空的数组等等function array_remove_empty($arr){ $narr = array(); while(list($key, $val) = each($arr)){ if (is_array($val)){ $val = array……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1646浏览 0评论502个赞
一个php操作mysql数据库的类<?php /** * Database class * * @version: 2.2 * @author: Emil T. Kampp <emil@kampp-productions.dk> * @revised: 27 may 2007 * **/ class Data……继续阅读 » 水墨上仙 4年前 (2021-01-15) 3000浏览 0评论1253个赞
php计算两个坐标(经度,纬度)之间的距离,返回结果为米或者千米function distance($lat1, $lng1, $lat2, $lng2, $miles = true){ $pi80 = M_PI / 180; $lat1 *= $pi80; $lng1 *= $pi80; $lat2 *= $pi80; $lng2 *= ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2687浏览 0评论2778个赞
一个php编写的xml分析类************************************************************************Example:************************************************************************ $xml……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2029浏览 0评论482个赞
php获得用户的真实ip函数function getRealIpAddr(){if (!empty($_SERVER['HTTP_CLIENT_IP'])) //check ip from share internet{ $ip=$_SERVER['HTTP_CLIENT_IP'];}elseif (……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2885浏览 0评论2337个赞
这是一个用于登录的php类,包含了数据库调用,写入cookieclass Auth{ var $user_id; var $username; var $password; var $ok; var $salt = "34asdf34"; var $domain = ".domain.com"; ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1325浏览 0评论197个赞
微信抽奖签到墙源码,年会,某宝买的源码–已经配置完成了,源码没问题,可直接用蓝奏云下载地址:问题1、浏览器版本不兼容问题,在首页文件里面把注释去掉就好了问题2、签到跳转主页问题,原因:未绑定公众号。解决办法:1、绑定公众号,要企业认证的那种;2、看置顶楼层,提供有解决办法。问题3、各种代码报错问题。解决办法:重新安装,检查是否设置错误即……继续阅读 » 开心洋葱 4年前 (2020-11-09) 1796浏览 13评论2072个赞
DSShop v3.0.2 单用户TP5框架B2C开源商城源码源码介绍DSShop商城系统是一套完善的B2C(单用户商城)解决方案。系统pc端后台使用国内优秀开源框架THinkPHP,基于PHP+MySQL开发,采用B/S架构,wap端使用vue.js构造,依据6年电商经验打造出的一套开源的B2C电子商务系统。DSShop商城系统技术评价1、B/S架构……继续阅读 » 开心洋葱 4年前 (2020-11-09) 1440浏览 0评论1653个赞
多端B2C单用户整站源码,支持PC+H5+小程序,支持小程序直播,丰富的营销功能源码仅供学习研究,商业用途请支持正版!本地环境:nginx+php7.2+mysql5.6(其他环境自行测试)测试截图:下载地址: 解压密码:关注公众号 回复:解压密码……继续阅读 » 开心洋葱 4年前 (2020-11-09) 2723浏览 0评论2639个赞
// Define the XML DocumentNSXMLDocument* doc = [[NSXMLDocument alloc] initWithXMLString:[NSString stringWithContentsOfFile:@"/folder/with/sample.xml"]]; // C……继续阅读 » 水墨上仙 5年前 (2019-08-02) 1280浏览 2169个赞
php查询mysql数据库prepare语句用法,使用prepare可以优化数据库查询$mysql = new mysqli('localhost', 'root', 'root', 'databaseName') or die('There was a proble……继续阅读 » 水墨上仙 5年前 (2019-07-11) 1514浏览 921个赞
会员推广下载专业版9.6.4,直接安装就能用! WordPress插件(Erphpdown)是一款针对虚拟资源收费下载的插件,基于收费下载资源插件,经过完美测试运行于wordpress 3.1.x-4.8.x版本。后续会增加更多实用的功能Foxpay升级9.6.4说明建议此次升级流程:停用插件 – 删除旧插件 – 上传新插……继续阅读 » 开心洋葱 5年前 (2019-06-27) 3147浏览 11评论681个赞
滚动条滚动到页面底部附近时动态加载内容显示var loading = false;$(window).scroll(function(){ if((($(window).scrollTop()+$(window).height())+250)>=$(document).height()){ if(loading == fal……继续阅读 » 水墨上仙 6年前 (2019-02-27) 1831浏览 1213个赞
微信小程序图表工具基于canvas绘制,体积小巧支持图表类型饼图 pie圆环图 ring线图 line柱状图 column区域图 area雷达图 radar更新记录 动画性能优化 图表滚动的支持,感谢@jxintang 优化曲线绘制 新增雷达图 2017-03-17 新增tooltip 2017-03-07 ……继续阅读 » 开心洋葱 7年前 (2018-05-02) 1563浏览 0评论2806个赞
yii框架高级In查询写法……继续阅读 » 开心洋葱 7年前 (2018-04-28) 2607浏览 0评论1144个赞
{ "time": "2018/04/17-16:05:47(+0800)", "level": "ERRO", "id": "25wgipft6owt6pujel4d", "error": &qu……继续阅读 » 开心洋葱 7年前 (2018-04-17) 3028浏览 0评论1905个赞
【已解决】No alive nodes found in your cluster错误php 集成Elasticsearch 时候,查询出现这个错,请检查配置的服务器IP是否正确,服务器是否开启。需要指定节点的ip和端口号,示例代码如下:……继续阅读 » 开心洋葱 7年前 (2018-03-23) 3316浏览 0评论2349个赞
yii2.0 上传头像插件(可裁剪)yii2-avatar扩展包yii2 图片上传插件 yii框架不通用基于cropper的一款头像上传yii2组件包名: composer require daimakuai/yii2-avatar截图yii2 图片上传插件 安装方法The preferred way to install this exten……继续阅读 » 开心洋葱 7年前 (2017-12-14) 1634浏览 0评论1283个赞
yii2.0 上传头像插件(可裁剪)yii2-avatar扩展包yii2.0 上传头像插件包名基于cropper的一款头像上传yii2组件包名: composer require daimakuai/yii2-avatar截图yii2.0 上传头像插件 安装方法 The preferred way to install this e……继续阅读 » 开心洋葱 7年前 (2017-12-14) 1357浏览 0评论2210个赞
php配置方法:配置方法:1. 进入File>Settings>PHP>Servers,这里要填写服务器端的相关信息:name: localhost,host: localhost,port: 80,debugger: XDebug2. 进入File>Settings>PHP>Debug,找到XDebug选项卡,port填9000进入File……继续阅读 » 开心洋葱 7年前 (2017-10-28) 2728浏览 0评论1095个赞
Methods with the same name as their class will not be constructors in a futusupports_collation is deprecated since version 3.5.0! Use wpdb::has_cap( ‘collation’ ) inst……继续阅读 » 开心洋葱 8年前 (2017-06-16) 2003浏览 0评论2781个赞
$file = Input::file(‘myfile’);if($file -> isValid()){ //检验一下上传的文件是否有效.$clientName = $file -> getClientOriginalName();$tmpName = $file ->getFileName(); // 缓存……继续阅读 » 开心洋葱 8年前 (2017-05-31) 1643浏览 0评论608个赞
============================================================GeoHash PHP ClassProvides a class for generating and decoding geohashes asdocumented at http://en.wikipedia.org/wiki/……继续阅读 » 开心洋葱 8年前 (2017-05-22) 1683浏览 0评论1303个赞
php按单词截取字符串的代码,指定字符串和单词数量进行截取<?phpfunction limit_words($string, $word_limit){ $words = explode(" ",$string); return implode(" ",array_splice($……继续阅读 » 水墨上仙 8年前 (2017-05-09) 2708浏览 684个赞
php生成随机密码的函数function auth_pwgen(){ $pw = ''; $c = 'bcdfghjklmnprstvwz'; //consonants except hard to speak ones $v = 'aeiou'; ……继续阅读 » 水墨上仙 8年前 (2017-05-09) 2127浏览 2019个赞
php检查要包含的文件是否存在可读……继续阅读 » 水墨上仙 8年前 (2017-05-09) 2509浏览 1518个赞
Facebook\WebDriver\Exception\WebDriverCurlException: Curl error thrown for http POST to /session with params: AuthTest::testLoginPageFacebook\WebDriver\Exception\WebDriverC……继续阅读 » 开心洋葱 8年前 (2017-05-08) 1897浏览 0评论1490个赞
如果文件大小为字节单位的,阅读起来不方便,这个函数可以把字节单位转换成KB,MB,GB,TB等单位,方便阅读function ByteSize ( $file_size ){ $file_size = $file_size-1; if ($file_size >= 1099511627776) $show_filesize = n……继续阅读 » 水墨上仙 8年前 (2017-05-05) 1387浏览 2639个赞
php将文件夹下的所有图片放入数组function listImages($dirname=".") { $ext = array("jpg", "png", "jpeg", "gif"); $files = array(); ……继续阅读 » 水墨上仙 8年前 (2017-05-05) 1799浏览 2697个赞
指定一个文件夹,在php里include这个文件夹下的所有.php文件foreach (glob("*.php") as $filename) { include($filename);}……继续阅读 » 水墨上仙 8年前 (2017-05-05) 1493浏览 1878个赞
php检测浏览器类型代码// Simple browser detection$is_lynx = $is_gecko = $is_winIE = $is_macIE = $is_opera = $is_NS4 = $is_safari = $is_chrome = false; if (strpos($_SERVER['HTTP_U……继续阅读 » 水墨上仙 8年前 (2017-05-05) 1890浏览 1372个赞
php动态生成表单代码<?php define('VALID_NOT_EMPTY', '/.+/'); define('VALID_EMAIL', "/^[a-z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&&……继续阅读 » 水墨上仙 8年前 (2017-05-04) 1180浏览 548个赞
php动态改变图片尺寸后输出,输出图片时使用下面的地址:image_resize.php?img=image.jpg&w=150&h=150&constrain=1w和h为要显示的尺寸 0) { // calculate resized height and width if percent is defined……继续阅读 » 水墨上仙 8年前 (2017-05-04) 2773浏览 2705个赞
php不破坏单词截取子字符串的方法/* snippet(phrase,[max length],[phrase tail]) snippetgreedy(phrase,[max length before next space],[phrase tail]) */ function snippet($text,$le……继续阅读 » 水墨上仙 8年前 (2017-05-04) 1514浏览 627个赞
php 将数组转换成xml的类class ArrayToXML{ /** * The main function for converting to an XML document. * Pass in a multi dimensional array and this recrusively loops through and bu……继续阅读 » 水墨上仙 8年前 (2017-05-03) 2896浏览 2979个赞
Migration table not found.Migration table created successfully. [Illuminate\Database\QueryException] SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was ……继续阅读 » 开心洋葱 8年前 (2017-04-24) 1241浏览 0评论2002个赞
(node:23771) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.> node-sass@3.13.1 ins……继续阅读 » 开心洋葱 8年前 (2017-04-22) 2418浏览 0评论2403个赞
You can however run a command with sudo using –allow-root optionError: post install error, please remove node_modules before retry!Run “sh -c bower install &……继续阅读 » 开心洋葱 8年前 (2017-04-22) 1764浏览 0评论660个赞
Do not run Composer as root/super user! See https://getcomposer.org/root for detailsLoading composer repositories with package informationInstalling dependencies (including requi……继续阅读 » 开心洋葱 8年前 (2017-04-22) 1552浏览 0评论2255个赞
创建,添加到PHP中的数组里$MyArray = array(); do { $MyArray[] = $row_rsMyRecordset['MyField'];} while ($row_rsMyRecordset = mysql_fetch_assoc($rsMyRecordset));pr……继续阅读 » 开心洋葱 8年前 (2017-04-14) 3073浏览 0评论968个赞
Fatal error: Maximum execution time of 0 seconds exceeded会显示Fatal error: Maximum execution time of 2147483647 seconds exceeded即使是设置 max_execution_time 为9999999,也是一样报错解决办法:max_……继续阅读 » 开心洋葱 8年前 (2017-04-12) 3085浏览 0评论1357个赞