一、安装1、# apt-get install wine安装完后在终端里运行wine:# wine会弹出一个对话框:This is the wine64-bin helper package, which does not provide wine itself,but instead exists...
function substr_text($str, $start=0, $length, $charset="utf-8", $suffix=""){ if(function_exists("mb_substr")){//mb_substr函数不是php内置函数,需要加载php.mbstring....
分类:
其他好文 时间:
2014-09-21 20:52:31
阅读次数:
217
跟 column相关的常见的方法有:column_exists? (table_name, column_name, type = nil, options = {})add_column (table_name, column_name, type, options = {})remove_co....
分类:
其他好文 时间:
2014-09-21 18:38:31
阅读次数:
271
String separator = File.separator;String filename = "myfile.txt";String dir = "mydir1"+separator+"mydir2";File f = new File(dir,filename);if(f.exists....
分类:
其他好文 时间:
2014-09-20 18:22:29
阅读次数:
157
the /tmp folder of linux will be cleaned every time when you reboot.Well, actually, It doesn't "delete on reboot"; it only exists in RAM in the first ...
分类:
其他好文 时间:
2014-09-20 08:50:36
阅读次数:
218
users 表结构 ( name, address )现要让 users 表添加多个地址,于是乎有了下面的 migrationdef change unless column_exists? :users, :address_id add_column :users, :address_id...
分类:
其他好文 时间:
2014-09-20 08:50:06
阅读次数:
279
ERROR ITMS-9000: "Redundant Binary Upload. There already exists a binary upload with build version '1.0'
解决办法...
分类:
其他好文 时间:
2014-09-19 19:25:05
阅读次数:
237
key 查看数据库中所有的keys keys * //查看所有 keys my* //查看以my开头的 exists 确认一个key是否存在,存在返回1,不存在返回0 例如: exists myname del 删除一个key,成功返回1 例如: del mylist expire 设置一个key的...
分类:
其他好文 时间:
2014-09-19 18:58:05
阅读次数:
142
情形:两个表,my_site和my_site_company,通过主键site_id唯一关联。my_site的主键是自动增加,my_site_company的主键依赖于my_site。## Source for table my_site#DROP TABLE IF EXISTS `my_site`...
分类:
系统相关 时间:
2014-09-19 17:36:05
阅读次数:
245
// 创建文件上传路径 public static void mkdir(String path) { File fd = null; try { fd = new File(path); if (!fd.exists()...
分类:
编程语言 时间:
2014-09-19 15:28:55
阅读次数:
300