A. php迅速做简单的动态网站( 只需要 能够在后台更新文字和图片)
这们朋友,你要实现更新文字和图片功能,需要有知道以下知识点:
1)数据库的增删改查操作;
2)使用PHP对数据库进行操作(涉及到表单提交);
3)用PHP使结果循环遍历输出;
4)分页功能实现;
5)文件上传(主要针对图片更新)
以上几点你只要会了,你所说的功能就可以简单实现。当然,还有个笨办法,就是你做静态网页,要添加的内容可以用DW的可视化编辑添加好内容然后上传到服务器后做好相关链接,这样就不涉及到数据库操作,也不用PHP,只是每次更新的内容只存在静态网页中,无法保存到数据库里。两者你可以任选其一了。
(Mekbo【麦客博】)
B. php如何下载动态图片保存到本地
php 远程下载文件
function http($url, $file="", $timeout=60) {
$file = empty($file) ? pathinfo($url,PATHINFO_BASENAME) : $file;
$dir = pathinfo($file,PATHINFO_DIRNAME);
!is_dir($dir) && @mkdir($dir,0755,true);
$url = str_replace(" ","%20",$url);
if(function_exists('curl_init')) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$temp = curl_exec($ch);
if(@file_put_contents($file, $temp) && !curl_error($ch)) {
return $file;
} else {
return false;
}
} else {
$opts = array(
"http"=>array(
"method"=>"GET",
"header"=>"",
"timeout"=>$timeout)
);
$context = stream_context_create($opts);
if(@($url, $file, $context)) {
//$http_response_header
return $file;
} else {
return false;
}
}
}
C. php 如何将GIF动态图像缩放成指定大小后依旧保持动态
此js代码来自网络logo的处理,还是很好用的,需要注意的地方就是proMaxHeight,proMaxWidth参数的动态获取,你可以直接用php赋值,或者用smartyphplib之类的模板,这个不难
<htmlxmlns="http://www.w3.org/1999/xhtml"xml:lang="zh-CN"lang="zh-CN">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/>
<title>test</title>
<scriptlanguage=Javascript>
varproMaxHeight=50;
varproMaxWidth=50;
functionproDownImage(ImgD){
varimage=newImage();
image.src=ImgD.src;
if(image.width>0&&image.height>0){
varrate=(proMaxWidth/image.width<proMaxHeight/image.height)?proMaxWidth/image.width:proMaxHeight/image.height;
if(rate<=1){
ImgD.width=image.width*rate;
ImgD.height=image.height*rate;
}
else{
ImgD.width=image.width;
ImgD.height=image.height;
}
}
}
//-->
</script>
</head>
<bodybgcolor="#ffffff"topmargin="0"leftmargin="0"scroll="no">
<imgsrc="./pp.gif"onload=proDownImage(this);/>
</body>
</html>
D. 用php从数据库里提取数据画动态折线图
吧数据取出来,然后根据一定格式输出,然后使用网络的ECharts生成统计图。
E. 如何使用PHP添加GIF动态图片验证码
楼主可以研究下gd函数库,验证码都是用gd动态生成的。