- 博客(25)
- 收藏
- 关注
转载 java调用C程序
案例如下: package com.laction.so linux:/mnt/zddom/com/laction/so -rw-r--r--. 1 root root 922 Nov 13 14:30 HelloJNI.class -rw-r--r--. 1 root root 463 Nov 13 14:29 HelloJNI.javaHelloJNI.javapackage...
2018-11-20 17:30:00 133
转载 php AES加密 对应Java SHA1PRNG方式加密
做对接的时候,服务商做的AES加密通过SHA1PRNG算法(只要password一样,每次生成的数组都是一样的,所以可以用来做加密解密的key)进行了又一次加密,搞了好几个小时,直接看对应的代码吧,可以参考一下,只有Java的加密源码private static byte[] encrypt(byte[] byteContent, byte[] password) throws ...
2017-07-26 11:52:00 923
转载 yii插入数据库防并发
分享yii的一段有用的代码:当需要让数据库某字段自增时,比如统计每天的查询量,每次请求后都把request_count+1,如果这样写: $model->request_count++; $flag = $model->save();遇到并发时会不准确,可改为: $flag = static::updateAll(...
2017-05-27 11:59:00 273
转载 PHPUnit测试
今天单元测试测到一个有点坑的小问题: public function testUpdataStatusFailForNegative() {// // Remove the following lines when you implement this test.// $this->markTestIncomplete(...
2016-08-11 16:04:00 114
转载 yii2源码学习笔记(二十)
Widget类是所有部件的基类。yii2\base\Widget.php 1 <?php 2 /** 3 * @link http://www.yiiframework.com/ 4 * @copyright Copyright (c) 2008 Yii Software LLC 5 * @license http://www.yiifram...
2016-06-24 20:55:00 201
转载 yii2源码学习笔记(十九)
view剩余代码 1 /** 2 * @return string|boolean the view file currently being rendered. False if no view file is being rendered. 3 * 当前正在渲染的视图文件 4 */ 5 public fu...
2016-06-23 21:18:00 123
转载 yii2源码学习笔记(十八)
View继承了component,用于渲染视图文件:yii2\base\View.php 1 <?php 2 /** 3 * @link http://www.yiiframework.com/ 4 * @copyright Copyright (c) 2008 Yii Software LLC 5 * @license http://www...
2016-06-22 21:03:00 188
转载 PHPUnit初试
先测试了一下加减,检查一下环境,又调用函数测试了服务器名。源代码: 1 class DemoController extends \Think\Controller 2 { 3 4 /** 5 * @assert (5, 8) == 13 6 * @assert (16, 76) == 92 7 * @asser...
2016-06-17 21:28:00 94
转载 yii2源码学习笔记(十七)
Theme 类,应用的主题,通过替换路径实现主题的应用,方法为获取根路径和根链接:yii2\base\Theme.php 1 <?php 2 /** 3 * @link http://www.yiiframework.com/ 4 * @copyright Copyright (c) 2008 Yii Software LLC 5 * @li...
2016-06-17 20:51:00 190
转载 yii2源码学习笔记(十六)
Module类的最后代码 1 /** 2 * Registers sub-modules in the current module. 3 * 注册子模块到当前模块 4 * Each sub-module should be specified as a name-value pair, where 5 *...
2016-06-16 21:00:00 111
转载 yii2源码学习笔记(十五)
这几天有点忙今天好些了,继续上次的module来吧 1 /** 2 * Returns the directory that contains the controller classes according to [[controllerNamespace]]. 3 *根据控制器的命名空间返回控制器的目录路径 4 * N...
2016-06-15 21:18:00 206
转载 yii2源码学习笔记(十四)
Module类是模块和应用类的基类。 yiisoft\yii2\base\Module.php 1 <?php 2 /** 3 * @link http://www.yiiframework.com/ 4 * @copyright Copyright (c) 2008 Yii Software LLC 5 * @license http:/...
2016-06-08 21:21:00 146
转载 yii2源码学习笔记(十三)
模型类DynamicModel主要用于实现模型内的数据验证yii2\base\DynamicModel.php 1 <?php 2 /** 3 * @link http://www.yiiframework.com/ 4 * @copyright Copyright (c) 2008 Yii Software LLC 5 * @license...
2016-06-07 21:05:00 322
转载 yii2源码学习笔记(十二)
继续了解controller基类。 /** * Runs a request specified in terms of a route.在路径中指定的请求。 * The route can be either an ID of an action within this controller or a complete route consisti...
2016-06-06 20:55:00 115
转载 yii2源码学习笔记(十一)
Controller控制器类,是所有控制器的基类,用于调用模型和布局。 1 <?php 2 /** 3 * @link http://www.yiiframework.com/ 4 * @copyright Copyright (c) 2008 Yii Software LLC 5 * @license http://www.yiiframe...
2016-06-03 21:21:00 255
转载 yii2源码学习笔记(十)
继续了解Application. 1 /** 2 * Registers the errorHandler component as a PHP error handler. 3 * 注册errorHandler组件作为PHP错误处理函数 4 * @param array $config application config ...
2016-06-02 20:19:00 224
转载 yii2源码学习笔记(九)
Application是所有应用程序类的基类,接下来了解一下它的源码。yii2\base\Application.php。 1 <?php 2 /** 3 * @link http://www.yiiframework.com/ 4 * @copyright Copyright (c) 2008 Yii Software LLC 5 * @l...
2016-05-31 20:55:00 146
转载 yii2源码学习笔记(八)
Action是所有控制器的基类,接下来了解一下它的源码。yii2\base\Action.php 1 <?php 2 /** 3 * @link http://www.yiiframework.com/ 4 * @copyright Copyright (c) 2008 Yii Software LLC 5 * @license http:/...
2016-05-30 20:57:00 206
转载 yii2源码学习笔记(七)
今天继续了解model类1 /** 2 * Returns the form name that this model class should use. 3 * 4 * 返回表单的名称,就是这个 model 的类名 5 * 6 * The form name is mainly used by ...
2016-05-27 20:07:00 207
转载 yii2源码学习笔记(六)
Behvaior类,Behavior类是所有事件类的基类:目录yii2\base\Behavior.php 1 <?php 2 /** 3 * @link http://www.yiiframework.com/ 4 * @copyright Copyright (c) 2008 Yii Software LLC 5 * @license http...
2016-05-26 20:50:00 147
转载 yii2源码学习笔记(五)
Event是所有事件类的基类。它封装了与事件相关的参数。yii2\base\Event.php 1 <?php 2 /** 3 * @link http://www.yiiframework.com/ 4 * @copyright Copyright (c) 2008 Yii Software LLC 5 * @license http:...
2016-05-25 19:03:00 122
转载 yii2源码学习笔记(四)
继续了解组件Component.php 1 /** 2 * Returns a value indicating whether a property is defined for this component. 3 * A property is defined if: 4 * 5 * - the class h...
2016-05-24 21:05:00 135
转载 yii2源码学习笔记(三)
组件(component),是Yii框架的基类,实现了属性、事件、行为三类功能,如果需要事件和行为的功能,需要继承该类。yii\base\Component代码详解 1 <?php 2 /** 3 * @link http://www.yiiframework.com/ 4 * @copyright Copyright (c) 2008 Yii ...
2016-05-23 19:42:00 158
转载 yii2源码学习笔记(二)
yii\base\Object代码详解 1 <?php 2 /** 3 * @link http://www.yiiframework.com/ 4 * @copyright Copyright (c) 2008 Yii Software LLC 5 * @license http://www.yiiframework.com/licens...
2016-05-20 21:56:00 266
转载 yii2源码学习笔记
assets 前端资源文件夹,用于管理css js等前端资源文件等commands 包含命令行命令,文件为控制器文件config 应用的配置文件controllers 控制器文件mail (应用的前后台和命令行的与邮件相关的布局文件等)modles 模型文件runtime 程序运行时生成的临时文件tests 用于各种测试程序的测试类文...
2016-05-19 18:30:00 137
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人