前端学习 | 2012,北京行!我看行!
  • 1
  • 2
  • 3
    24小时排行
  • 最新
  • 热门
  • 热评
  • 随机

最近更新

php数组排序

 一、一维数组

假设有一个一维数组,如下:
 
1
$sortArr = array("name"=>"hiro", "age"=>"23", "city"=>"Shanghai", "code"=>"200051");
...
2012-4-21 Comments:0php数组排序数组排序
php常用函数

 PHP常用数组函数

  array():创建数组.eg:$arr=array("sd","sd");$arr=array("sd"=>"sdsd","fd"=>"sds");
  list():从数组里提取多个值同时给多个变量赋值 .list($var1,$car2.$var3)=arr;
...
2012-4-21 Comments:0php常用函数php函数
php基础学习笔记

 1、  PHP片段四种表示形式。

标准tags:<?php           ?>
short tags:<?              ?> 需要在php.ini中设置short _open_tag=on,默认是on
asp tags: <%             %>需要在php.ini中设置asp_tags=on,默认是off
...
2012-4-21 Comments:0php基础php学习笔记php前端学习
php json转化

 <?php

/**************************************************************
 *
 * 使用特定function对数组中所有元素做处理
 * @param string &$array 要处理的字符串
...
2012-4-21 Comments:0php json转化
国外设计站点学习

 丹麦Icon设计师的主页

 
http://jonas.seph.ws/
 
生活在澳洲的19岁中国UI设计师
 
http://www.istartedsomething.com/
 
韩国icon工作室
 
http://www.zzve.com/
...
2012-4-9 Comments:0国外设计站点
常用css样式

 (1)class="fixed"

我在每个样式表中都使用这个类名。我将这个类指定在包含浮动子元素的容器上。我要用它来清除该容器内的浮动,使用这些代码:
.fixed:after{
content:".";
display:block;
...
2012-4-9 Comments:0常用css样式css样式
MySQL模糊查询语法

 

 
$sql="select * from table_name where field_name like '%$var%'"; 
$result=mysql_query($sql) or die; 
 
MySQL提供标准的SQL模式匹配,以及一种基于象Unix实用程序如vi、grep和sed的扩展正则表达式 
...
2012-4-9 Comments:0MySQL模糊查询语法