2014级PHP程序设计

2016-2-23 14:43
请先登录。
<?php $lining = array('id'=>'1001','name'=>"李宁运动衫",'price'=>320,'num'=>2,'rental'=>640); $naike = array('id'=&g...
<?php include('link.php'); /* * 数组形成表格 * 要求: * 1、根据上述图片定义数组。 * 2、根据上述图片形式将上述数组显示到页面中。 */ $goods = array(       array('序...
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <?php $users = array( 'user1'=>array('序号'=>'1','商品...
<?php $product=array( array("序号","商品编号","商品名称","商品价格","商品数量","商品总额"), array(1,1001,"李宁运动衫",320,2,640), array(2,1002,"耐克运动鞋",...
<?php include 'utf-8.php'; //1、定义数组,数组元素为以上内容。 //2、定义函数,筛选出最近三年入职的员工,显示到表格中。 //3、定义函数,筛选出管理人员,显示到表格中。 //4、定义函数,找出角色最多的成员,显示到表格中。 //定义...
<meta http-equiv="Content-Type" charset="utf-8"/> <?php $users = array( 'user1'=>array('序号'=>'1','商品编号'=>'1001','商品名称'=...
<?php include 'utf-8.php'; include 'fun.inc.php'; //定义数组 $goods = array( array('序号' => '1','商品编号' => '1001','商品名称' => '李宁...
<?php $goods = array( array('序号','商品编号','商品名称','商品价格','商品数量','商品总额'), array(1,1001,'李宁运动衬衫',320,2,640), array(...
<?php include 'utf-8.php'; //创建数组存储数据 $goods = array( array('序号' , '商品编号' , '商品名称' , '商品价格' , '商品数量' , '商品总额'), ...
<?php $good = array( array('序号','商品编号','商品名称','商品价格','商品数量','商品总额'), array(1,1001,'李宁运动衬衫',320,2,640), array(2,1002,'耐克运动鞋...
<?php     /**     * 功能:定义数组,显示内容     */    $goods = array(        'go...
<?php $goods=array(   array('序号','商品编号','商品名称','商品价格','商品数量','商品总额'),     array(1,1001,'李宁运动衬衫',320,2,640),   &nbs...
<?php //创建数组 $goods = array(     array(     'NO'=>'序号',     'HSCODE'=>'商品编号',     'Pr...
<?php  header("content-type:text/html;charset=utf-8");  echo "<table>";  echo "<tr>";   &n...
<?php $good = array( array('序号','商品编号','商品名称','商品价格','商品数量','商品总额'), array(1,1001,'李宁运动衬衫',320,2,640), array(2,10...
<?php
 $good = array(
      array('序号','商品编号','商品名称','商品价格','商品数量','商品总额'),
      array(1,1001,'李宁运动衬衫',320,2,640),
      array(2,1002,'耐克运动鞋',120,1,120),
      array(3,1003,'时尚背包',220,2,440)
  );
  print_r($good);
?>
#2014级PHP程序设计#指派了新任务. 5-2 数组应用
已知有如下如所示的数据: 根据上面图片完成以下功能: 1、定义数组,数组内容为以上内容。 2、定义函数,筛选出最近三年入职的员工,显示到表格中。 3、定义函数,筛选出管理人员,显示到表格中。 ...
#2014级PHP程序设计#指派了新任务. 定义并显示数组
请定义数组,显示如下图片所示的内容: 1、根据上述图片定义数组。 2、根据上述图片形式将上述数组显示到表格中。
<?php function strchange($str,$search){ echo str_replace($search, "<font color='red'>$search</font>", $str); } strchan...
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> /* *求和 *1、使用全局变量。 *2、使用静态变量。 *3、传参时传地址法。...
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <?php $strs = '河北师范大学软件学院'; $search  = '软件'; ...
/* 在fun.inc.php中的代码 */ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <?php function br() { &...
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <?php /*   邮箱地址是否合法 1、邮箱地址以参数形式传给函数。 2、必须检测邮箱地址是否合法。 ...
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <?php /* *将新闻表题以15字的形式体现出来 */ function titleDisplay($title...
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <?php /*  *函数实现密码验证并用md5加密的方式输出。  *1、密码长度为6-12。 ...
<?php /**  *搜索的关键字是“软件”  *以参数形式传进函数的字符串  */ include('code.php'); $str = '河北师范大学软件学院'; $search = '软件'; $replace = '<f...
<?php /**  *包含函数 br,调用此函数时  *将输出一个html标记<br />到页面中  *包含函数dump,调用此函数时   *使用var_dump函数将传递进来的变量打印出来  */ in...
<?php /**  *1、邮箱地址以参数形式传给函数。  *2、必须检测邮箱地址是否合法。  *3、对合法邮箱地址,取得此邮箱的域名,用返回值返回。  */ include('code.php'); function gain...
<?php /**最多显示15个字  *若超过15个字则取前15个字并在之后连接上 “......”  */ include('code.php'); function dispalyTitle(&$title){ $length = s...
代码: <?php  echo "<font color='blue'>2.对密码加密</font><br>"; function pEncrypt($password){     if(st...