码迷,mamicode.com
首页 >  
搜索关键字:helper    ( 908个结果
dedecms 文章命名规则
dede cms 文章命名规则:修改include/helpers/channelunit.helper.php //修行数190 $dsql->SetQuery("SELECT writer FROM #@__archives ORDER BY id DESC LIMIT 0,1"); $dsql->Execute(‘hw‘); $hotword = ""; whi...
分类:其他好文   时间:2014-12-15 10:37:30    阅读次数:165
flexpaper在线预览office文件,通过iis浏览没问题
项目快结项了,就差最后一个在线预览功能了。研究了两天。不通过office组件就可以把office文件转换pdf,废话不说,上图 public class Helper { /// /// word文件转换pdf /// /// wor...
分类:其他好文   时间:2014-12-13 12:03:40    阅读次数:255
【C/C++】全排列
给定正整数n,求1,2,3,...,n的全排列解法一:递归,结果并不为字母序排列。void Helper(vector v, int low, int high){ if(low == high) { for(int i = 0; i v(n,0); for(int...
分类:编程语言   时间:2014-12-10 21:05:21    阅读次数:157
centos 6.2 2.6.32-504 内核升级问题
[root@haoniu-2950 linux-3.10.62]# make -j8 modules_install ? INSTALL arch/x86/crypto/ablk_helper.ko ? INSTALL arch/x86/crypto/aes-x86_64.ko ? INSTALL arch/x86/crypto/aesni-intel.ko ? INSTALL ar...
分类:其他好文   时间:2014-12-08 17:59:14    阅读次数:2498
C++11 type_traits 之is_pointer,is_member_function_pointer源码分析
源码如下: template struct __is_pointer_helper : public false_type { }; template struct __is_pointer_helper : public true_type { }; /// is_p...
分类:编程语言   时间:2014-12-08 12:06:01    阅读次数:200
C#求生之路-HTML Helper
原文参考:http://www.cnblogs.com/jyan/archive/2012/07/23/2604474.htmlmsdn:http://msdn.microsoft.com/zh-cn/library/system.web.mvc.htmlhelper_methods%28v=vs....
分类:Windows程序   时间:2014-12-05 12:07:24    阅读次数:312
聊聊ORM
ORM出现最多是Java项目中,三大Java框架SSH都是它的代表。 ????原以为Java碰的少,非要Java时也会用原生态的Helper,不会招惹到ORM的大驾。但最近在一个小型php项目中都看到它的身影,导致项目对DB的...
分类:其他好文   时间:2014-12-03 12:38:37    阅读次数:206
Mac OS X安装native gem提示找不到 dyld_stub_binding_helper
在Mac OS X10.10下sudo gem install curses 返回如下错误: apple@kissAir: ruby_src$sudo gem install curses Password: Fetching: curses-1.0.1.gem (100%) Building native extensions.  This could take a...
分类:系统相关   时间:2014-12-03 12:33:28    阅读次数:394
在页面上打印日历
@helper SignInCalender(DateTime argDate){ DateTime vFirstDay = new DateTime(argDate.Year, argDate.Month, 1); int vLastday = argDate.AddMonths(1).AddDa...
分类:其他好文   时间:2014-12-02 13:24:04    阅读次数:167
C++11 type_traits 之is_convertible源码分析
请看源码: template, is_function, is_array>::value> struct __is_convertible_helper { static constexpr bool value = is_void::va...
分类:编程语言   时间:2014-12-02 10:34:09    阅读次数:223
908条   上一页 1 ... 76 77 78 79 80 ... 91 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!