2014级PHP程序设计

2016-2-23 14:43
请先登录。
#2014级PHP程序设计#指派了新任务. 编写函数,将搜索关键词加红加粗显示
若搜索的关键字是“软件”,以参数形式传进函数的字符串是“河北师范大学软件学院”,实现效果如下: 河北师范大学软件学院
#2014级PHP程序设计#指派了新任务. 4-5 创建函数库fun.inc.php
此函数库包含内容: 1、包含函数 br,调用此函数时,将输出一个html标记<br />到页面中。 2、包含函数dump,调用此函数时,使用var_dump函数将传递进来的变量打印出来。
#2014级PHP程序设计#指派了新任务. 4-4 定义函数,取得邮箱域名
要求: 1、邮箱地址以参数形式传给函数。 2、必须检测邮箱地址是否合法。 3、对合法邮箱地址,取得此邮箱的域名,用返回值返回。
#2014级PHP程序设计#指派了新任务. 4-3 字符串截取功能函数实现
某网站要求每个新闻的标题在显示时,最多显示15个字,若超过15个字则取前15个字并在之后连接上 “......”,请编写函数实现此功能(标题以参数形式传递进函数里)
#2014级PHP程序设计#指派了新任务. 4-2 定义函数,对密码进行验证
某网站对密码要求如下: 1、密码长度为6-12。 2、密码包含字符为数字、字母、下划线。 3、每个密码至少包含1个数字,1个字母,1个下划线。 4、进行md5加密。 请定义函数实现上述此功能,假设密码通过参数...
#2014级PHP程序设计#指派了新任务. 使用3种方法实现分值的累计求和
以游戏分数累积为场景,实现分值的累计求和,使用的3种方法为: 1、使用全局变量。 2、使用静态变量。 3、传参时传地址法。
<php function login($name,$password){     $name=strlen($name);     $password=strlen($password); &nbs...
<?php $originalPrice;//商品原价 $presentPrice;//商品现价 function discount($originalPrice,$presentPrice){ if('至尊会员') { $presentPrice=$original...
<?php function Login($username,$password){ $name=strlen($username); $passwords=strlen($password); if($name<4)...
<?php function printmoney($date){ $time=time(); $entry=strtotime($date); $Y1=(int)date("Y",$time); $m1=(int)date("...
<?php /*用户登录功能实现 *参数$usrerName,用户名 *参数$password,密码 *返回值:encryption加密的密码 */ header("Content-type: text/html; charset=utf-8"); error_r...
<?php function price($yuanjia,$member){ if($member=='普通会员') { $price = $yuanjia*0.98; retu...
<?php /*计算商品价格 *参数$member,会员类型 *参数$price,商品价格 *返回值:$discountPrice打折后的价格 */ header("Content-type: text/html; charset=utf-8"); error_r...
<?php /*司龄补助计算 *参数$year,入职年龄 *返回值:司龄补助 */ header("Content-type: text/html; charset=utf-8"); function allowance($year){ $time=tim...
<php function caculate($year){ for($year=1;$year<=12;$year++){     $money+=$year*50; } } ?>
<?php header("Content-Type:text/html; charset=utf-8"); /* *function计算商品的价格 *$sum:金额 *$level:等级 *return 应付价格 */ function price($sum,$le...
<?php header("Content-Type:text/html; charset=utf-8"); /* *判断用户名的长度 *$username:用户名 *无返回值 */ function checkUsername($username){ if(st...
<meta http-equiv="Content-Type" charset="utf-8"/> <?php /* *某店铺商品价格规则如下: *至尊会员原价基础上打7.5折; extreme *金牌会员原价基础上打8折;   gold *银牌...
<?php /* *function计算一定时间间隔相差的年数 *$entrydate:进入公司的年月日[格式:2014-2-3] return ; */ function outmoney($entrydate){ $time=time(); $entry=s...
<meta http-equiv="Content-Type" charset="utf-8"/> <h3>用户登录</h3> <?php /* *定义函数实现用户的登录功能,要求如下: *用户名和密码通过参数传递进来。 *检测用户...
<?php function price($pprice,$member){ if($member=='普通会员') { $price = $pprice*0.98; return $price; } e...
<?php function check($account,$password){ if(strlen($account)<4) { echo '用户名长度不够'; die(); } else if...
<meta http-equiv="Content-Type" charset="utf-8"/> <h3>计算司龄补助</h3> <?php /* *根据员工的入职时间计算司龄补助 *参数$year,入职时间 *返回值:司龄补助 ...
<?php  function Userlogin($Username,$password){  if (strlen($Username)>0 && strlen($Username)<4) {  &nb...
<?php /*  * 功能:司龄补助  * 参数:&Year入职年份  * 返回值:司龄补助金额    */ function calculate($Year){    ...
<?php /* * 功能:计算打折价格 * 参数:$type  $price  $Price * 返回值:返回最终价格 */ function Price($type,$price) {  switch ($type) { &...
抱歉老师,不知道还有时间限制,下次一定准时上交
<?php
header("content-type:text/html;charset=utf-8");

function divisionAgeAllowance($Year,$Month){
    $time = time();
    date_default_timezone_set('PRC');
    $dateYear =date('Y年',$time);
    $year = (int)$dateYear;
    $dateMonth =date('m月',$time);
    $month = (int)$dateMonth;
    if($year-$Year==1&&($month<$Month))
    {
        echo '这个人的司龄补助为0元';
    }
    
    else if($year-$Year&&($month>=$Month)){
        $divisionAge=$year-$Year;
        if($divisionAge>=12)
        {
            echo '这个人的司龄补助为 600元';
        }
        else
        {
            $money=0;
            for($i=0,$money;$i<$divisionAge;$i++){ 
                $money=$money+50;
            }
            echo $money;
            
        }
    }
    
    else if($year-$Year&&($month<$Month)){
        $divisionAge=$year-$Year;
        if($divisionAge>12)
        {
            echo '这个人的司龄补助为 600元';
        }
        else
        {
            $money=0;
            for($i=1,$money;$i<$divisionAge;$i++){
                $money=$money+50;
            }
            echo $money;
    
        }
    }
    else 
        echo '这个人的司龄补助为0元';
}
divisionAgeAllowance(2012,1);
?>
<?php
header("content-type:text/html;charset=utf-8");

function divisionAgeAllowance($Year,$Month){
    $time = time();
    date_default_timezone_set('PRC');
    $dateYear =date('Y年',$time);
    $year = (int)$dateYear;
    $dateMonth =date('m月',$time);
    $month = (int)$dateMonth;
    if($year-$Year==1&&($month<$Month))
    {
        echo '这个人的司龄补助为0元';
    }
    
    else if($year-$Year&&($month>=$Month)){
        $divisionAge=$year-$Year;
        if($divisionAge>=12)
        {
            echo '这个人的司龄补助为 600元';
        }
        else
        {
            $money=0;
            for($i=0,$money;$i<$divisionAge;$i++){ 
                $money=$money+50;
            }
            echo $money;
            
        }
    }
    
    else if($year-$Year&&($month<$Month)){
        $divisionAge=$year-$Year;
        if($divisionAge>12)
        {
            echo '这个人的司龄补助为 600元';
        }
        else
        {
            $money=0;
            for($i=1,$money;$i<$divisionAge;$i++){
                $money=$money+50;
            }
            echo $money;
    
        }
    }
    else 
        echo '这个人的司龄补助为0元';
}
divisionAgeAllowance(2012,1);
?>
<?php function vip($price,$size){     if($size == '至尊'){           $price = $price * 0.75;   ...
<?php     function login($name,$password){     $name1=strlen($name);     $password1=strlen($password); &...