green_phanta
Erfahrenes Mitglied
ok danke trotzen ich lese mir heut noch quake durch... vielleciht ja morgen.
Naja gute nacht
greets green
Naja gute nacht
greets green
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<?php
erzeugen('/img1/');
erzeugen('/img2/');
erzeugen('/img3/');
function erzeugen($neues_verzeichnis)
{
$update_thumbs=true;
$thumb_w=76;
$thumb_h=90;
$thumb_q=95;
$neues_verzeichniss = '/img1/';
$base_dir='uploaded';
$gal_name='fadingdreamsgallery';
if(isset($_GET["update"])&&$_GET["update"]=="true")$update_thumbs=true;
if(isset($_GET["base"]))$base_dir=htmlentities(stripslashes($_GET["base"]));
if(isset($_GET["name"]))$gal_name=htmlentities(stripslashes($_GET["name"]));
$images=array();
$xm_str='<galname="'.$gal_name.'"base="'.$base_dir.'">';
if(is_dir($base_dir)&&$dhd=opendir($base_dir)){
while($file=readdir($dhd)){
$link=$base_dir.'/'.$file;
if(is_file($link)){
$size=filesize($link);
$measures=@getimagesize($link);
array_push($images,$file);
if($update_thumbs){
$thumb=createThumb($base_dir,$file,$measures[0],$measures[1]);
}else{
$thumb=(is_file($base_dir.'/$neues_verzeichnis/'.$file))?'$neues_verzeichnis/'.$file:$file;
}
$xm_str.='
'.'<imgsrc="'.$file.'"thumb="'.$thumb.'"width="'.$measures[0].'"height="'.$measures[1].'"size="'.$size.'"/>';
}
}
closedir($dhd);
}
$xm_str.='
</gal>';
echo$xm_str;//testweise:'<pre>'.htmlentities($xm_str).'</pre>';
if($update_thumbs){
clearThumbs($base_dir,$images);
}
functionclearThumbs($base_dir,$images){
if(is_dir($base_dir.'/'.$neues_verzeichnis)&&$dhd=opendir($base_dir.'/'.$neues_verzeichnis)){
while($file=readdir($dhd)){
if(is_file($base_dir.'/'.$neues_verzeichnis.'/'.$file)){
$found=false;
foreach($imagesas$val){
if($file==$val){
$found=true;
break;
}
}
if(!$found){
$u=unlink($base_dir.'/'.$neues_verzeichnis.'/'.$file);
}
}
}
closedir($dhd);
}
}
functioncreateThumb($base_dir,$file,$w,$h){
global$thumb_w,$thumb_h,$thumb_q;
$path=$base_dir.'/'.$file;
if(!is_dir($base_dir.'/'.$neues_verzeichnis)){
mkdir($base_dir.'/'.$neues_verzeichnis,0777);
}
$temp=imagecreatefromjpeg($path);
$r=$w/$h;
$thumb_h=intval($thumb_w/$r);
$small=imagecreatetruecolor($thumb_w,$thumb_h);
if($suc=imagecopyresampled($small,$temp,0,0,0,0,$thumb_w,$thumb_h,$w,$h)){
$result=imagejpeg($small,$base_dir.'/$neues_verzeichnis/'.$file,$thumb_q);
}else{
$result=false;
}
imagedestroy($temp);
imagedestroy($small);
if($result){
return'$neues_verzeichnis/'.$file;
}else{
return$file;
}
}
}
?>
<?php
function erzeugen($neues_verzeichnis,$thumb_w,$thumb_h,$thumb_q)
{
$update_thumbs=true;
$base_dir='uploaded';
$gal_name='fadingdreamsgallery';
if(isset($_GET["update"])&&$_GET["update"]=="true")$update_thumbs=true;
if(isset($_GET["base"]))$base_dir=htmlentities(stripslashes($_GET["base"]));
if(isset($_GET["name"]))$gal_name=htmlentities(stripslashes($_GET["name"]));
$images=array();
$xm_str='<galname="'.$gal_name.'"base="'.$base_dir.'">';
if(is_dir($base_dir)&&$dhd=opendir($base_dir)){
while($file=readdir($dhd)){
$link=$base_dir.'/'.$file;
if(is_file($link)){
$size=filesize($link);
$measures=@getimagesize($link);
array_push($images,$file);
if($update_thumbs){
$thumb=createThumb($base_dir,$file,$measures[0],$measures[1]);
}else{
$thumb=(is_file($base_dir.'/$neues_verzeichnis/'.$file))?'$neues_verzeichnis/'.$file:$file;
}
$xm_str.='
'.'<imgsrc="'.$file.'"thumb="'.$thumb.'"width="'.$measures[0].'"height="'.$measures[1].'"size="'.$size.'"/>';
}
}
closedir($dhd);
}
$xm_str.='
</gal>';
echo$xm_str;//testweise:'<pre>'.htmlentities($xm_str).'</pre>';
if($update_thumbs){
clearThumbs($base_dir,$images);
}
functionclearThumbs($base_dir,$images){
if(is_dir($base_dir.'/'.$neues_verzeichnis)&&$dhd=opendir($base_dir.'/'.$neues_verzeichnis)){
while($file=readdir($dhd)){
if(is_file($base_dir.'/'.$neues_verzeichnis.'/'.$file)){
$found=false;
foreach($imagesas$val){
if($file==$val){
$found=true;
break;
}
}
if(!$found){
$u=unlink($base_dir.'/'.$neues_verzeichnis.'/'.$file);
}
}
}
closedir($dhd);
}
}
functioncreateThumb($base_dir,$file,$w,$h){
global$thumb_w,$thumb_h,$thumb_q;
$path=$base_dir.'/'.$file;
if(!is_dir($base_dir.'/'.$neues_verzeichnis)){
mkdir($base_dir.'/'.$neues_verzeichnis,0777);
}
$temp=imagecreatefromjpeg($path);
$r=$w/$h;
$thumb_h=intval($thumb_w/$r);
$small=imagecreatetruecolor($thumb_w,$thumb_h);
if($suc=imagecopyresampled($small,$temp,0,0,0,0,$thumb_w,$thumb_h,$w,$h)){
$result=imagejpeg($small,$base_dir.'/$neues_verzeichnis/'.$file,$thumb_q);
}else{
$result=false;
}
imagedestroy($temp);
imagedestroy($small);
if($result){
return'$neues_verzeichnis/'.$file;
}else{
return$file;
}
}
}
// funktion aufruf
erzeugen ('/img1/',76,90,95);
erzeugen ('/img2/',76,90,95);
erzeugen ('/img3/',76,90,95);
?>
Parse error: syntax error, unexpected '{' in /usr/export/www/vhosts/funnetwork/hosting/partywien/jo/gut Kopie.php on line 36
<?php
function erzeugen($neues_verzeichnis,$thumb_w,$thumb_h,$thumb_q)
{
$update_thumbs=true;
$base_dir='uploaded';
$gal_name='fadingdreamsgallery';
if(isset($_GET["update"])&&$_GET["update"]=="true")$update_thumbs=true;
if(isset($_GET["base"]))$base_dir=htmlentities(stripslashes($_GET["base"]));
if(isset($_GET["name"]))$gal_name=htmlentities(stripslashes($_GET["name"]));
$images=array();
$xm_str='<galname="'.$gal_name.'"base="'.$base_dir.'">';
if(is_dir($base_dir)&&$dhd=opendir($base_dir)){
while($file=readdir($dhd)){
$link=$base_dir.'/'.$file;
if(is_file($link)){
$size=filesize($link);
$measures=@getimagesize($link);
array_push($images,$file);
if($update_thumbs){
$thumb=createThumb($base_dir,$file,$measures[0],$measures[1]);
}else{
$thumb=(is_file($base_dir.'/$neues_verzeichnis/'.$file))?'$neues_verzeichnis/'.$file:$file;
}
$xm_str.='
'.'<imgsrc="'.$file.'"thumb="'.$thumb.'"width="'.$measures[0].'"height="'.$measures[1].'"size="'.$size.'"/>';
}
}
closedir($dhd);
}
$xm_str.='
</gal>';
echo$xm_str;//testweise:'<pre>'.htmlentities($xm_str).'</pre>';
if($update_thumbs){
clearThumbs($base_dir,$images);
}
functionclearThumbs($base_dir,$images){
if(is_dir($base_dir.'/'.$neues_verzeichnis)&&$dhd=opendir($base_dir.'/'.$neues_verzeichnis)){
while($file=readdir($dhd)){
if(is_file($base_dir.'/'.$neues_verzeichnis.'/'.$file)){
$found=false;
foreach($images as $val){
if($file==$val){
$found=true;
break;
}
}
if(!$found){
$u=unlink($base_dir.'/'.$neues_verzeichnis.'/'.$file);
}
}
}
closedir($dhd);
}
}
functioncreateThumb($base_dir,$file,$w,$h){
global$thumb_w,$thumb_h,$thumb_q;
$path=$base_dir.'/'.$file;
if(!is_dir($base_dir.'/'.$neues_verzeichnis)){
mkdir($base_dir.'/'.$neues_verzeichnis,0777);
}
$temp=imagecreatefromjpeg($path);
$r=$w/$h;
$thumb_h=intval($thumb_w/$r);
$small=imagecreatetruecolor($thumb_w,$thumb_h);
if($suc=imagecopyresampled($small,$temp,0,0,0,0,$thumb_w,$thumb_h,$w,$h)){
$result=imagejpeg($small,$base_dir.'/$neues_verzeichnis/'.$file,$thumb_q);
}else{
$result=false;
}
imagedestroy($temp);
imagedestroy($small);
if($result){
return'$neues_verzeichnis/'.$file;
}else{
return$file;
}
}
}
// funktion aufruf
erzeugen ('/img1/',76,90,95);
erzeugen ('/img2/',76,90,95);
erzeugen ('/img3/',76,90,95);
?>
Der Bildschirm ist weiß sonst nix...
Ich bin am verzweifeln