摘要: //脚本申明的格式 //程序完成的时候自动调用的事件creationComplete="application1_creationCompleteHandler(event)"调试代码使用的是trace()is 判断某个变量是不是某种类型as表示的是一种转换的类型eg:var a:int=0;var... 阅读全文
posted @ 2014-04-23 22:57 醉孟子 阅读(161) 评论(0) 推荐(0) 编辑
摘要: felx4将功能组件划分为3个命名空间分别是fx:核心功能mx:标准flex3组件组s:新flex4 spark组件组 阅读全文
posted @ 2014-04-23 19:31 醉孟子 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 1234var s1 = string.Format("{0,-10}", 8);var s2 = string.Format("{0,10}", 8);var s3 = string.Format("{0,20:yyyy-MM-dd}", DateTime.Today);var s4 = stri... 阅读全文
posted @ 2014-04-23 17:15 醉孟子 阅读(513) 评论(0) 推荐(0) 编辑
摘要: 当构造函数有多个重载的时候 想通过默认构造函数调用其他的重载的构造函数的话 就可以用:运算符public Primes():this(2, 100){//code}public Primes(int a, int b) //重载的{//code}string s = default(string);... 阅读全文
posted @ 2014-04-23 16:06 醉孟子 阅读(344) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace WebApp2010{ public class User... 阅读全文
posted @ 2014-04-23 15:59 醉孟子 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 示例如下:扩展方法usingSystem;usingSystem.Collections.Generic;usingclass1;//注意:引入扩展方法的空间namespaceCon_1{classProgram{staticvoidMain(string[]args){stringstr="{0}... 阅读全文
posted @ 2014-04-23 14:18 醉孟子 阅读(243) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Security.Cryptography;using System.Text;using System.Threading.Tasks;name... 阅读全文
posted @ 2014-04-23 13:46 醉孟子 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 使用新建flex项目向导建立项目 阅读全文
posted @ 2014-04-23 07:44 醉孟子 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 解释 adobe flash platformflex是一个免费的开源的框架 该应用程序通常是用在 浏览器和 桌面 AIR中的了解 flex框架 ,Flex sdk 和adobe flash builder之间的关系描述flex应用程序开发工作流程flex开发通常使用的是 mxml 和上action... 阅读全文
posted @ 2014-04-23 07:32 醉孟子 阅读(273) 评论(0) 推荐(0) 编辑
摘要: file_exists()(获取文件属性使用的方式是用 meadth="post" enctype="multipart/form-data"一定要写一个隐含表单 阅读全文
posted @ 2014-04-23 07:04 醉孟子 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 匹配查找strstrstrpos 通常用在表单验证里面可以用到substr正值表达式匹配 preg_mathc(), preg)mathc_all() , preg_grep()编码格式的转换 heade("content-type ;text-html; charset-utf-8"); 阅读全文
posted @ 2014-04-23 06:44 醉孟子 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 一个正值表达式是有四部分组成分别是 1、定界符 //是最常用的定界符 其实除了数组字母下划线以外其他的什么都可以作为定界符2、原子:最小的一个匹配单位 放在定界符中 在一个正值表达式中至少要有一个原子(就是我们要找的字符eg:2我们要找3 ,3就是原子 )3、元字符 :元字符不能单独使用的是用来扩展... 阅读全文
posted @ 2014-04-22 22:34 醉孟子 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 克隆对象 __clone()$p2=clone $p;$p=>say();克隆对象的时候自动调用的方法作用和构造方法一样是对新克隆的对象进行初始化在这个方法中$this是副本所以可以给所有的副本成员初始化eg:function __clone(){echo"fasdfasdfasd";}in_arr... 阅读全文
posted @ 2014-04-22 19:49 醉孟子 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 字符串主要的是分割匹配查找替换特点:如果是其他类型的数据,也可以使用字符串处理函数 先将其他类型自动的转换成字符串处理字符串可以像数组一样通过下标来访问到每一个字符但是不是数组mb_substr();用来截取字符常用的输出函数有_echo() 输出字符串_print()输出一个字符串_die()输出... 阅读全文
posted @ 2014-04-22 07:18 醉孟子 阅读(123) 评论(0) 推荐(0) 编辑
摘要: $str =array("dd"=>"d","dc"=>"ds","dd"=>"ad");next($str);next($str);next($str);这个表示是控制指定的位置next($str);end($str);pre($str);result($str);echo'当前的位置默认第一个是... 阅读全文
posted @ 2014-04-21 22:22 醉孟子 阅读(161) 评论(0) 推荐(0) 编辑