2014级PHP程序设计
2016-2-23 14:43
请先登录。
<meta charset="utf-8">
<?php
/*字符串截取功能函数实现*/
function subString($str){
$length = mb_strlen($str,'utf-8');
if($length > 15){
e...
<?php
header("content-type:text/html;charset=utf-8");
/* 创建函数库fun.inc.php
此函数库包含内容:
1、包含函数 br,调用此函数时,将输出一个html标记<br />到页面中。
2、包含...
<?php
function outB(){
echo "<br>";
}
function outS($str){
...
<?php
// 4-3字符串截取功能函数实现
header("content-type:text/html;charset=utf-8");
function cutTitle($title)
{
if(mb_strlen($title , 'utf-8')...
<?php
function getCom($email){
if(!strpos($email, '@')){
echo ("邮箱地址不合法");
&nbs...
<?php
header("content-type:text/html;charset=utf-8");
/*
验证邮箱
邮箱地址以参数形式传给函数
必须检测邮箱地址是否合法
对合法邮箱地址,用返回值返回此邮箱域名
*/
function email($email)...
<?php
function br(){
echo '<br/>';
}
function dump($in){
echo var_dump ($in);
}
?>
<?php
header("content-type:text/html;carset=utf-8");
function mailBox($email){
$length = strlen(strstr($email,'@'));
if($leng...
<?php
function sub($text){
if(strlen($text)>15)
echo substr($text,0,30).'......';
&n...
<meta charset="utf-8">
<?php
/*定义函数,对密码进行验证
*1、密码长度为6-12。
*2、密码包含字符为数字、字母、下划线。
*3、每个密码至少包含1个数字,1个字母,1个下划线。
*4、进行md5加密。
PS:preg_m...
<?php
/**
* 功能:验证密码
* 参数:$password
*/
&n...
<?php
function detection($email){
$domain = strstr($email,"@");
if (strlen($domain) > 0) {
echo '域...
<?php
header("content-type:text/html;charset=utf-8");
/*超过的字数省略为.....*/
$length = "如何确保营改增5月1日如期落地?国家税务总局局长王军在大会堂部长通道面对媒体提问时做出了回答";
fu...
<?php
/*
* 4-1 使用3种方法实现分值的累计求和
* 以游戏分数累积为场景,实现分值的累计求和,使用的3种方法为:
* 1、使用全局变量。
* 2、使用静态变量。
* 3、传参时传地址...
<?php
function passWord($password){
if (strlen($password) < 6 || strlen($password)>12){
echo ...
<meta http-equiv="Content-Type" charset="GBK"/>
<?php
$str = "十五字十五字十五字十五字十五字多出来了";
function cut($str){
$str=su...
<?php
header("content-type:text/html;carset=utf-8");
function cutOut($title){
if(strlen($title) > 15){
return $title =...
<?php
// 4-4 定义函数,取得邮箱域名
function getCn($email){
if(!strpos($email, '@')){
echo ("邮箱地址不合法");
}
$tmp = strstr($emai...
<?php
header("content-type:text/html;charset=utf-8");
/*密码*/
$password = "mxmx89_10";
echo "<form>";
echo "密码";
echo "<input ...
<?php
header("Content-type: text/html; charset=utf-8");
function test($demo){
if (mb_strlen($demo,'utf-8')>15)...
<?php
function checkNum($passWord){
return preg_match("/^[a-zA-Z _]*$/",$passWord);
}
function checkEng($passWord){
return ...
<?php
function br(){
echo '<br/>';
}
function dump($str){
var_dump($str);
}
?>
<?php
function validation($password){
if (strlen ($password) < 6 || strlen ($password) > 12) {
echo '您输...
<?php
function changeColor($search,$newSearch,$str){
echo str_replace($search,$newSearch,$str);
}
$str='河北师范大学软件学院';
$search='软件'...
<?php
header("Content-type: text/html; charset=utf-8");
function testPw($password){
if(strlen($password) < 6 || str...
<?php
function Br(){
echo "<br>";
}
function Stamp($str){
var_dump($str);
}
?>
<?php
echo '全局变量';
echo ':';
$sum = 0;
function sum($num){
global $sum;
$sum += $num;
...
<?php
header("Content-type: text/html; charset=utf-8");
$sum1 = 0;
function scoreSum1($num){
global $sum1;
$sum1 += $num;
return $sum...
<?php
function textPw($password){
if(strlen($password) < 6 || strlen($password) >12){
&nb...
<?php
function emall($emall){
$tem=strstr($emall,'@');
$num=strlen($tem);
if($num>0){
echo '<br/>';
return...