`
vtrtbb
  • 浏览: 360394 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表

php取当前路径

    博客分类:
  • php
dirname(__FILE__).DIRECTORY_SEPARATOR  
// 本方法 分行又分页 public static ArrayList<ArrayList<String>> getPageContentStringInfo( Paint m_paint, String content, int pageLines, float pageWidth) { char ch; int w = 0; int istart = 0; int lineNum = 0; ArrayList<ArrayList<String>> contentList = ne ...
Can’t connect to local MySQL server through socket ’/tmp/m 运行/etc/rc.d/init.d/mysqld start命令后,显示成功登陆MySQL,但是,再想用命令:/usr/local/bin/mysqladmin -u root password 123456 修改数据库密码时,总是提示: Can’t connect to local MySQL server through socket ’/tmp/mysql.sock’(2) Check that mysqld is running and that the socket ...

php MVC --Command

    博客分类:
  • php
<?php abstract class Command { final function __construct() { } function execute(HttpRequest $request) { $this->doExecute($request); } abstract function doExecute(HttpRequest $request) ; } public class HttpRequest { private $properties; private $feedback ...
function GB2312UTF8(){ this.Dig2Dec=function(s){ var retV = 0; if(s.length == 4){ for(var i = 0; i < 4; i ++){ retV += eval(s.charAt(i)) * Math.pow(2, 3 - i); } return retV; } return -1; } this.Hex2Utf8=function(s){ var retS ...
jQuery获取Select选择的Text和Value:语法解释:1. $("#select_id").change(function(){//code...});   //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text();  //获取Select选择的Text3. var checkValue=$("#select_id").val();  //获取Select选择的Value4. var ch ...
We've been using Twitter's kestrel queue server for a while now at work, but only from our service layer, which is written in python.  Now that we have some queueing needs from our application layer, written in PHP, I spent a few days this week adding queue support to our web application.  I thought ...

php实现装箱算法

    博客分类:
  • php
贪婪法是一种不追求最优解,只希望得到较为满意解的方法。贪婪法一般可以快速得到满意的解,因为它省去了为找最优解要穷尽所有可能而必须耗费的大量时间。贪婪法常以当前情况为基础作最优选择,而不考虑各种可能的整体情况,所以贪婪法不要回溯。     例如平时购物找钱时,为使找回的零钱的硬币数最少,不考虑找零钱的所有各种发表方案,而是从最大面值的币种开始,按递减的顺序考虑各币种,先尽量用大面值的币种,当不足大面值币种的金额时才去考虑下一种较小面值的币种。这就是在使用贪婪法。这种方法在这里总是最优,是因为银行对其发行的硬币种类和硬币面值的巧妙安排。如只有面值分别为1、5和11单位的硬币,而希望找回总额为15单位 ...
string test = "<rpt:tag name=rpt1 col=1 row=2 order=asc>abcsadf </rpt:tag> aaa <rpt:tag name=rpt2 col=4 row=10 order=desc>abcsadf </rpt:tag>"; MatchCollection mc = Regex.Matches(test, @"<rpt:tag[^>]*>", RegexOptions.IgnoreCase); int z = 0; fo ...
在百度文库里看到了,入门有好处   还有个mule in action
Bindable这个特性表示属性是否可以绑定一个有效数据源。通常使用布尔值进行设置。例如:Bindable(true)。如果使用值true标记属性,表示该属性可以绑定一个有效数据源,且应引发该属性的属性更改通知。Browsable指定属性是否应该在属性浏览器中显示,使用布尔值设置。通常情况下,功用属性和那些希望在属性浏览器中显示的属性被设置为 Browsable(true),只读属性和那些不希望在属性浏览器中见到的属性被设置为 Browsable(false)。Category指 定属性在属性浏览器中进行分组显示的类别。该设计时特性帮助可视化编辑器将属性进行逻辑分组。通常分为:外观(Appear ...
libmcrypt是什么??   是加密算法扩展库---支持DES, 3DES, RIJNDAEL, Twofish, IDEA, GOST, CAST-256, ARCFOUR, SERPENT, SAFER+等算法   在安装时候出现如下错误:   checking for C++ compiler default output file name... configure: error: C++ compiler cannot create executables See `config.log' for more details. [root@localhost libm ...
 export LANG='zh_CN.GB18030'     也可以修改i18n文件      

linux更新系统时间

    博客分类:
  • java
检查是否安装过ntp rpm -aq | grep ntp 如果没有装用 yum install ntp 完成后:ntpdate time.windows.com 让系统时间和BIOS时间同步,用hwclock命令就行了 命令行里打: hwclock --systohc 或者这个命令的简写 hwclock -w 就可以让BIOS时间和KERNEL时间一样了 不用NTP自己手动调时间的方法,写在这里主要是防止我自己忘了,天天要记的东西太多,忘事非常不爽#date              //显示当前日期#date -s ...

jstl 一些函数用法

    博客分类:
  • java
fn函数里面有很多好用的方法 <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 下面是JSTL中自带的方法列表以及其描述 函数名 函数说明 使用举例 fn:contains 判断字符串是否包含另外一 ...
Global site tag (gtag.js) - Google Analytics