原因是你的php.ini中没有开启对短标签的支持
创新互联专注于企业营销型网站建设、网站重做改版、昌宁网站定制设计、自适应品牌网站建设、H5开发、电子商务商城网站建设、集团公司官网建设、外贸网站制作、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为昌宁等各大城市提供网站开发制作服务。
也就是你的php运行环境不支持 ? ?这种语法
解决方法:
1、找到php的配置文件php.ini,打开,找到short_open_tag = off 改成 short_open_tag = On
然后保存,再重启服务器
2、是最简单也是最完美的方法,你把php标签写齐了不就得了,?php ?这种语法格式,任何环境都支持
这个得不到,除非他们那边有bug,正常情况别人是不会让你得到的。。。
http get一下就返回源码了。。比如 url为 target/XX.PHP?V=1
用游览器访问直接下载一个MP3 可以参考如下代码:
?php
$data = file_get_contents('target/XX.PHP?V=1');
file_put_contents('test.mp3', $data, true);
?
实现图片上传后的分别存放及图片缩放
upload.php
html
head
meta http-equiv="content-type" content="text/html; charset=utf-8"
titleUpload/title
/head
body
form action="do_upload.php" method="post" enctype="multipart/form-data"
上传图片:br/
input type="file" name="my_file[]"/br/
input type="file" name="my_file[]"/br/
input type="file" name="my_file[]"/br/
input type="submit" name="submit" value="上传"/
/form
/body
/html
do_upload.php
?php
if(isset($_POST['submit'])){
//echo "pre";
// print_r($_FILES['my_file']);
//echo "/pre";
//exit;
$c=count($_FILES['my_file']['name']);
for($i=0;$i$c;$i++){
if($_FILES['my_file']['name'][$i]==''){
continue;
}
if($_FILES['my_file']['error'][$i]0){
die("您上传失败,请联系管理员");
}
if(is_uploaded_file($_FILES['my_file']['tmp_name'][$i])){
$name=date('YmdHis').mt_rand(0,1000).'.jpg';
image_thumb($_FILES['my_file']['tmp_name'][$i],300,'l',$name);//这里负责处理图片的缩放以及保存到某目录下
image_thumb($_FILES['my_file']['tmp_name'][$i],200,'m',$name);
image_thumb($_FILES['my_file']['tmp_name'][$i],100,'s',$name);
}
}
}
function image_thumb($path,$dst_w,$mulu,$picname){
$arr=getimagesize($path);
switch($arr[2]){
case 1:$src_im=imagecreatefromgif($path);break;
case 2:$src_im=imagecreatefromjpeg($path);break;
case 3:$src_im=imagecreatefrompng($path);break;
}
//$src_im=imagecreatefromjpeg($path);
$src_w=imagesx($src_im);
$src_h=imagesy($src_im);
$dst_h=$src_h/$src_w*$dst_w;
$dst_im=imagecreatetruecolor($dst_w,$dst_h);
imagecopyresampled($dst_im,$src_im,0,0,0,0,$dst_w,$dst_h,$src_w,$src_h);
$new_path='images/'.$mulu.'/'.$picname;
imagejpeg($dst_im,$new_path);
imagedestroy($dst_im);
imagedestroy($src_im);
}
?
这是我以前自己写的 简单易懂 需要在这两个文件的同级目录创建images目录 里面再创建三个目录 l m s 分别为大图目录 和中图目录 小图目录