[root@qycaishenye]#tail-f/data/caishenye/sa_9_0.logPHPWarning:mkdir():Nosuchfileordirectoryin/data/caishenye/sa_9_0.phponline18PHPFatalerror:Calltoundefinedfunctionmysql_pconnect()in/data/caishenye/sa_9_0.phponline25InteractivemodeenabledPHPWarning:mkdir():..
分类:
数据库 时间:
2014-05-27 04:00:48
阅读次数:
466
typeoftypeof是一个一元运算符,它返回的结果
始终是一个字符串,对不同的操作数,它返回不同的结果。此表总结了typeof所有可能的返回值:操作数类型返回值undefined"undefined"Null"object"Boolean"boolean"Number"number"String...
分类:
编程语言 时间:
2014-05-24 07:18:35
阅读次数:
428
终极解决maya渲染层丢材质,变线框等问题
相信有很多同志在使用maya做灯光渲染的时候,经常能遇到渲染层的模型丢材质、变线框等问题,特别恶心。我也经常遇到,所以和大家分享一下我的解决或尽量避免的方法。引用文件(Reference)工作原理:引用文件在生产中以层级的方式来工作,每个层级都可以同时做....
分类:
其他好文 时间:
2014-05-24 03:26:49
阅读次数:
348
在Android.mk文件的LOCAL_SRC_FILES后面加入包含该类或函数的文件,用\隔开,\后换行继续添加例如LOCAL_SRC_FILES :=
NDKTest.cpp\bncore.c\bn_error.c\bn_fast_mp_invmod.c\bn_fast_mp_montgomer...
分类:
其他好文 时间:
2014-05-24 01:30:48
阅读次数:
1159
前些天写js的时候发现vs的提示都没了。。。纳闷但是没去了解原因。今天实在是受不了了。网上搜了一下,看到msdn文档上一句话,“通过使用 reference
指令,Visual Studio 能够在当前正编辑的脚本与其他脚本之间建立关系。”;突然之间我就明白了。找到项目中的Scripts文件夹下的_...
分类:
编程语言 时间:
2014-05-23 11:33:07
阅读次数:
304
获取光驱序列号、分位、型号代码
{CSDN:CODE:353256}
头文件如下(有些部分没有用到):
#include
#include
#include
#include
#include
// TODO: reference additional headers your program requires here
//static void dump_buffer(c...
分类:
其他好文 时间:
2014-05-22 09:56:04
阅读次数:
376
数据类型:undefined、null、boolean、string、number、复杂数据类型object
共六种typeof:undefined、object、boolean、string、number、function 六种console.log(typeof
null); //objec.....
分类:
编程语言 时间:
2014-05-19 21:52:31
阅读次数:
400
GLES2.0:Some device will give a warning on
compling shaders(yet the compling will succeed), and the rendering result is
incorrect with blink & artifac...
分类:
其他好文 时间:
2014-05-19 19:49:50
阅读次数:
328
原地址:http://www.cnblogs.com/yipu/p/3617521.html1、Code Sign error:
解决方案:重新下载并安装Provisioning profile2、错误:Undefined symbols for architecture armv7s
解决方案.....
分类:
移动开发 时间:
2014-05-18 18:54:43
阅读次数:
308
一、什么是原型链
当需要获取一个对象的某个属性或方法时,首先在对象自身查找该属性,找不到的话,会沿着原型链向上查找,直到在某个原型中找到该属性,如果到达原型链顶端依然找不到,则返回undefined.
1 var person = {name : "Peter"}; 2 3 //Peter...
分类:
编程语言 时间:
2014-05-18 02:25:41
阅读次数:
336