发布时间:2013-01-19 19:56:46
在extjs2.2中,表单提交之后,如下所示 function formSubmit(){ //表单提交验证 if(!passwordModifyForm.form.isValid()) { return;  .........【阅读全文】
发布时间:2013-01-16 16:06:00
今天在sina云上做sae的应用,调用php文件的一个接口,然后返回操作的结果的code,但是,奇怪的是,返回结果前面总是加了一点东西,导致我解析出错,我觉得是字符编码的问题,所以在php文件里面加多了 header("content-type:text/html; charset=utf-8");然后放回的数据就正常了,感觉真是很奇怪。.........【阅读全文】
发布时间:2013-01-03 15:07:35
mkdirs() will create the specified directory path in its entirety where mkdir() will only create the bottom most directory, failing if it can't find the parent directory of the directory it is trying to create.In other words mkdir() is like mkdir and mkdirs()&......【阅读全文】