分类:
Yii2 批量insert插入数据非for. foreach

Yii2 批量insert插入数据非for. foreach

栏目分类:PHP 浏览次数:258 发布时间:2017-09-20

$data=[audit_id=1,num=1,add_time=0];$connection=\Yii::$app-db;$connection-createCommand()-batchInsert(audit,[audit_id,num,add_time],//表和字段$data)-execute();...

TAG:
c# 获取方法所在的命名空间 类名 方法名

c# 获取方法所在的命名空间 类名 方法名

栏目分类:C# 浏览次数:400 发布时间:2017-09-14

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Diagnostics;usingSystem.Reflection;namespaceGetMethodNameSpace{classProgram{publicstaticstringGetMethodInfo(){stringstr=;//取得当前方法命名空间...

TAG:
thinkphp Apache和nginx伪静态重写规则

thinkphp Apache和nginx伪静态重写规则

栏目分类:PHP 浏览次数:242 发布时间:2017-09-12

nginx:rewrite^/index.php(.*)$/index.php$1last;Apache:IfModulemod_rewrite.cRewriteEngineonRewriteCond%{REQUEST_FILENAME}!-dRewriteCond%{REQUEST_FILENAME}!-fRewriteRule^(.*)$index.php/$1[QSA,PT,L]/IfModule...

TAG:
PHP 字符串转单个数组非explode

PHP 字符串转单个数组非explode

栏目分类:PHP 浏览次数:155 发布时间:2017-08-07

/***字符串转数组*@paramtype$str*@returntype*/publicstaticfunctionch2arr($str){$length=mb_strlen($str,utf-8);$array=[];for($i=0;$i$length;$i++)$array[]=mb_substr($str,$i,1,utf-8);return$array;} 文章地址: http://www.cnblogs.com/ya...

TAG:
php imagecopy说明详解

php imagecopy说明详解

栏目分类:PHP 浏览次数:154 发布时间:2017-08-04

imagecopy() imagecopy() 函数用于拷贝图像或图像的一部分,成功返回 TRUE ,否则返回 FALSE 。 bool imagecopy( resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h ) 参数说...

TAG:
php 获取图片的信息 getimagesize

php 获取图片的信息 getimagesize

栏目分类:PHP 浏览次数:167 发布时间:2017-07-29

php自带函数 getimagesize() $info = getimagesize(1.png); var_dump($info); array(6) { [0]= int(116) [1]= int(116) [2]= int(3) [3]= string(24) width=116 height=116 [bits]= int(1) [mime]= string(9) image/png }...

TAG:
c#使用web的UrlEncode/UrlDecode 方法

c#使用web的UrlEncode/UrlDecode 方法

栏目分类:C# 浏览次数:262 发布时间:2017-07-24

stringstr=System.Web.HttpUtility.UrlEncode(URL编码,System.Text.Encoding.Unicode);//编码Console.WriteLine(str);stringdestr=System.Web.HttpUtility.UrlDecode(str,System.Text.Encoding.Unicode);//解码Console.WriteLine(destr);...

TAG:
php exec()函数详解

php exec()函数详解

栏目分类:PHP 浏览次数:166 发布时间:2017-07-20

PHP专门提供了三个执行外部命令的函数:system(),exec(),passthru() 先说exec() 官方介绍文档:http://www.php.net/manual/en/function.exec.php string exec ( string $command [, array $output [, int $return_var ]] ) window下...

TAG:
openssl CA证书cer转pem

openssl CA证书cer转pem

栏目分类:编程更多 浏览次数:307 发布时间:2017-07-19

下载安装openssl http://slproweb.com/products/Win32OpenSSL.html cer证书使用base64编码输出 cer证书放在openssl exe的同目录运行 x509 -in 1.cer -out 1.pem...

TAG:
php 报错级别的修改e_all

php 报错级别的修改e_all

栏目分类:PHP 浏览次数:153 发布时间:2017-07-18

php.ini里面默认E_ALL 这样所有的错误和警告都会显示出来,这样对于生产环境肯定不利! 详细说明: 1 E_ERROR 致命的运行错误。错误无法恢复,暂停执行脚本。 2 E_WARNING 运行时警告(非致...

TAG: