1. 如何用php的环境变量得到一个网页地址的内容?ip地址又要怎样得到?
程序代码
echo $_SERVER ["PHP_SELF"];
echo $_SERVER ["SERVER_ADDR"];
2. 求两个日期的差数,例如2007-2-5 ~ 2007-3-6 的日期差数
程序代码
$begin=strtotime(“2007-2-5″);
$end=strtotime(“2007-3-6″);
echo ($end-$begin)/(24*3600);
3. 请写一个函数,实现以下功能:
字符串“open_door” 转换成 “OpenDoor”、”make_by_id” 转换成 ”MakeById”。
程序代码
function changeStyle(& $str) {
/*$str = str_replace ( “_”, ” “, $str );
$str = ucwords ( $str );
$str = str_replace ( ” “, “”, $str );
return $str;*/
$arrStr=explode(“_”,$str);
foreach($arrStr as $key=>$value){
$arrStr[$key]=strtoupper(substr($value,0,1)).substr($value,1);
}
return implode(“”,$arrStr);
}
$s = “open_door”;
echo changeStyle ( $s );