毕业论文时间安排

piaoling  2011-04-29 14:53:22

选题审批表:专业委员会意见时间 2010年11月1日 任务书:封面2010年11月20日  要求完成时间2011年5月13日 审查日期:2010年11月24日         批准时间:2010年11月26日  接受任务日期:2010年11月30日 开题报告:封面2010年12月18 日 论证小组意见2010年12月20日 专业委员会2010年12月26日 成绩册:封面2011年6月8日   指导教师评语2011年6月5日  答辩资格审查2011年6月6日         评阅教师评语2011年6月7日  ......

类别 :  日志(47)  |  浏览(4243)  |  评论(0)

失败图片

piaoling  2011-04-28 16:21:45

......

类别 :  默认(760)  |  浏览(3655)  |  评论(0)

国内国外优秀素材网站大全及实用网址

piaoling  2011-04-28 16:08:38

(一) 国内优秀素材资源网址: 站酷网 http://www.zcool.com.cn 推荐 素材中国 http://www.sccnn.com 推荐 酷素材 http://www.coolsc.com 推荐 站长站素材 http://sc.chinaz.com 韩国设计网 http://www.krwz.com 设客素材网 http://www.vicnc.com 奇爱素材网 http://www.72sc.com 搜PSD网 http://sopsd.com 推荐 好素材网 http://www.haosc.cn 丁丁家园 http://www.citk.net 顶尖设计 http://www.bobd.cn 大师之路 http://99ut.blueidea.com 设计家园 http://www.dwww.cn 昵图网 http://www.nipic.com 999素材网 http://www.999fww.cn 推荐 以......

类别 :  设计(4)  |  浏览(7305)  |  评论(0)

Tutorial: Creating a Magento Widget - Part 2

piaoling  2011-04-28 14:26:29

This is the second part of the widgets tutorial. It's highly recommended that you start with the introductory blog post on Magento Widgets to grasp the concepts and terminology, then read the first part of the tutorial at Tutorial: Creating a Magento Widget, Part 1. Introduction We've already learned how to create a simple widget (i.e. create a module, define widgets and create frontend blocks). Now we are going to try to go deeper into the available widget configuration options to see what makes Magento widgets so beneficial to both the store owners and extension developers. ......

类别 :  magento(258)  |  浏览(4164)  |  评论(0)

magento widgets

piaoling  2011-04-28 14:22:33

  Overview Magento Widgets allow business users with no technical knowledge to easily add dynamic content (including product data, for example) to pages in Magento Stores. This allows for greater control and flexibility in creating informational and marketing content through administrator tools, enabling intuitive and efficient control of content such as:   Dynamic product data in Marketing Campaign Landing Pages Dynamic Information such as Recently Viewed Items into Content Pages Promotional images to position in different blocks, side columns and other locatio......

类别 :  magento(258)  |  浏览(3588)  |  评论(0)

JavaScript字符串函数大全

piaoling  2011-04-28 14:11:36

JS自带函数 concat 将两个或多个字符的文本组合起来,返回一个新的字符串。 var a = "hello"; var b = ",world"; var c = a.concat(b); alert(c); //c = "hello,world" indexOf 返回字符串中一个子串第一处出现的索引(从左到右搜索)。如果没有匹配项,返回 -1 。 var index1 = a.indexOf("l"); //index1 = 2 var index2 = a.indexOf("l",3); //index2 = 3 charAt 返回指定位置的字符。 var get_char = a.charAt(0); //get_char = "h" lastIndexOf 返回字符串中一个子串最后一处出现的索引(从右到左搜索)......

类别 :  JS(21)  |  浏览(3819)  |  评论(0)

Ubuntu 11.04 安装过程中的屏幕截图(多图)

piaoling  2011-04-28 13:59:18

Ubuntu 11.04 将于 4月28日正式发布,这次相信不会跳票,没几天了。 先来看看安装过程中的截图吧(以前把这种贴成为杀猫贴,好在现在都是宽带): ......

类别 :  默认(760)  |  浏览(3253)  |  评论(0)

Magento's architecture and what that means for PHP developers. Read full article

piaoling  2011-04-28 11:56:13

Magento for Developers: Part 1 - Introduction to Magento   Alan Storm de-mystifies Magento's architecture and what that means for PHP developers. Read full article ......

类别 :  默认(760)  |  浏览(3360)  |  评论(0)

php获取文件类型

piaoling  2011-04-28 11:52:06

<?php $filename = "D:/htdocs/bak/upload/fff/把心交出来.wma"; $file     = fopen($filename, "rb"); $bin      = fread($file, 2); //只读2字节 fclose($file); $strInfo  = @unpack("c2chars", $bin); $typeCode = intval($strInfo['chars1'].$strInfo['chars2']); $fileType = ''; switch ($typeCode) {     case 7790:         $fileType = 'exe';         break;     case 7784: &n......

类别 :  PHP(78)  |  浏览(3857)  |  评论(0)

PHP正则表达式 /i, /is, /s, /isU等

piaoling  2011-04-28 10:39:13

PHP正则表达式 /i, /is, /s, /isU等 都是些什么东西呢? i 匹配大小写 s 模式中的圆点元字符(.)匹配所有的字符,包括换行符 x 模式中的空白字符除了被转义的或在字符类中的以外完全被忽略,在未转义的字符类之外的 # 以及下一个换行符之间的所有字符,包括两 头,也都被忽略 A (PCRE_ANCHORED) 如果设定了此修正符,模式被强制为“anchored”,即强制仅从目标字符串的开头开始匹配即自动在模式开头加上^。 D (PCRE_DOLLAR_ENDONLY) 如果设定了此修正符......

类别 :  PHP(78)  |  浏览(3703)  |  评论(0)
  • Page:68/146  1460 Blogs
    <<
    >>
    20088
    周日 周一 周二 周三 周四 周五 周六

    文章分类