The Oracle/PLSQL TO_DATE function converts a string to a date.TO_DATE( string1, [ format_mask ], [ nls_language ] )Parameters or Argumentsstring1 is t...
分类:
其他好文 时间:
2014-08-05 00:02:48
阅读次数:
305
一、web服务器示例var http = require('http');http.createServer(function(req, res){ res.writeHeader(200, {Content-Type : 'text/plain'}); res.end('hello w...
分类:
Web程序 时间:
2014-08-05 00:01:58
阅读次数:
417
_.find(document.styleSheets[4].cssRules,function(cssRule){
if(cssRule.selectorText && cssRule.selectorText.indexOf(".navbar-fixed-top2")>-1){
cssRule.style.position="";
cssRule.style.top = ...
分类:
Web程序 时间:
2014-08-04 21:46:58
阅读次数:
363
SRBF的全称是Spherical
Radial Basis Function,我擅自翻译为球面放射基底函数。因为SRBF并不怎么出名,相对来说,SH(Spherical
Harmonic)球谐函数更为出名(出现的也更早),而且在很多绘制引擎里用的也是SH,而不是SRBF。网上关于SRBF的资料也很少,这里写关于SRBF的文章,主要是针对对SRBF有兴趣的同学,一起探讨一下SRBF...
分类:
其他好文 时间:
2014-08-04 21:32:18
阅读次数:
418
spl_autoload_register(PHP 5 >= 5.1.2)spl_autoload_register — 注册__autoload()函数说明bool spl_autoload_register ([ callback $autoload_function ] )将函数注册到SPL ...
分类:
Web程序 时间:
2014-08-04 21:26:09
阅读次数:
296
call_user_func ( callback $function [, mixed $parameter [, mixed $... ]] ) 调用第一个参数所提供的用户自定义的函数。返回值:返回调用函数的结果,或FALSE。example:Php代码 调用类的内部方法:Php代码 ...
分类:
其他好文 时间:
2014-08-04 21:22:37
阅读次数:
334
function DownURL(strRemoteURL, strLocalURL){ try{ var xmlHTTP = new ActiveXObject("Microsoft.XMLHTTP"); xmlHTTP.open("Get...
分类:
Web程序 时间:
2014-08-04 21:19:28
阅读次数:
241
/*** * 获得根目录 * @returns */function getRootPath() { var strFullPath = window.document.location.href; var strPath = window.document.location.pathn...
分类:
Web程序 时间:
2014-08-04 21:17:07
阅读次数:
262
int __builtin_constant_p (exp); You can use the built-in function __builtin_constant_p to determine if a value is known to be constant at compile-time...
分类:
其他好文 时间:
2014-08-04 21:14:17
阅读次数:
193
$('#btnAddr').tooltip({ content: $(''), //弹出收件地址 showEvent: 'mouseover', onUpdate: function (cc) { cc....
分类:
其他好文 时间:
2014-08-04 21:12:47
阅读次数:
308