搜索

大约有5项符合查询结果,库内数据总量为316项。(搜索耗时:0.0025秒) [XML]

1. 重新解读常见的排序算法 [100%]

...是现实版的冒泡排序。 <?php $order_array=array(5,4,3,6,7,1,2,10,8,9 ); function bubble_order($arr){ $count_num=count($arr); for($k=1;$k<$count_num;$k++){ for($i=0;$i<$count_num-$k;$i++){ if($arr[$i]>$arr[$i+1]){ $tem=$arr[$i]; ...

排序算法 20171108

2. CentOS 6.2编译安装环境 [99%]

...定要有耐心,遇到报错一定要淡定。 安装环境:centos6.2+Apache2.2.4+MySQL5.5.31+PHP5.3.26 准备: 一、配置防火墙,开启80端口、3306端口 vi /etc/sysconfig/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT(允许80端口通...

cenos6.2、php 20200101

3. js的函数类库 [98%]

...确 function is_cardnum(str){ var reg = /^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/; return reg.test(str); } (八)检测邮箱是否正确 function checkemail(email){ var pattern = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/; return !patt...

js的函数类库 20151218

4. I miss you [95%]

...kind of soft warmth that can’t be expressed with any choice of words. 2、你知道思念一个人的滋味吗,就像喝了一大杯冰水,然后用很长很长的时间流成热泪。 Do you understand the feeling of missing someone? It is just like that you will spend a long hard time to ...

I miss you ,tell my firend 20130903

5. php面试题总结(一) [58%]

...态方法会被调用。 __clone(),当对象复制完成时调用 2.isset和empty函数有什么区别? PHP的isset()函数 一般用来检测变量是否设置 格式:bool isset ( mixed var [, mixed var [, ...]] ) 功能:检测变量是否设置 返回值: 若变量不存...

php 20171010