国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Table of Contents
$err
Photo gallery add
Photo gallery
Home Backend Development PHP Tutorial 通過PHP的File函數(shù)庫來完成上傳圖像文件并讓其顯示_PHP

通過PHP的File函數(shù)庫來完成上傳圖像文件并讓其顯示_PHP

Jun 01, 2016 pm 12:32 PM
the upload function image Finish document show pass

通過File文件函數(shù)來操作上傳的圖片,下面是轉(zhuǎn)自zend.com上的一篇文章,有許多可取之處,但是卻感覺到眾多的目錄很古怪,大家看了后可以相互討論一下:

// FILE 1: DISPLAY AND PROCESS ENTRY FORM AND UPLOAD PICTURE FILE TO SERVER

// full directory path
$filepath = "/home/httpd/html/tut/upload";

// 200K is the maximum (picture) file size to be accepted
define("MAX_FILE_SIZE", 200*1024);

function print_error ($err) {
echo "

$err


";
}

do {
// check if picture name variable has a value; if not, skip to the
// "while(false)" section of "do" statement
if(isset($picture)) {
// here is where the server transparently checks that the client picture file
// doesn't exceed maximum allowable size
if(getenv("CONTENT_LENGTH") > MAX_FILE_SIZE) {
print_error("File too large: $picture_name");
break;
}

// open client picture file for read only; "@" prefix tells fopen not to print
// message if there is an error, since function print_error does that

// if there is an error, break out of "do" loop and continue at "while(false)"

$fp = @fopen($picture,"r");
if(!$fp) {
print_error("Cannot open file: $picture_name");
break;
}

// generate unique name for session, use it to generate unique server
// directory name, and create the directory

srand((double) microtime() * 1000000);
$id = md5(uniqid(rand()));
$dirname = "$filepath/$id";
mkdir($dirname,0700);

// create the server picture file in the newly created server directory
$filename = $dirname . "/picture";

// open server picture file for write only; "@" prefix tells fopen not to
// print message if there is an error, since function print_error does that

// if there is an error, break out of "do" loop and continue at "while(false)"
$out = @fopen($filename,"w");
if(!$out) {
print_error("Cannot open file: $filename");
break;
}

// copy client picture file to server picture file
while($buffer = fread($fp,8192)) {
fwrite($out,$buffer);
}

// close client picture file and server picture file
fclose($fp);
fclose($out);

// create server name file in picture file directory; this file will hold the
// name of the picture file
$filename = $dirname . "/name";

// open server name file for write only; "@" prefix tells fopen not to print
// message if there is an error, since function print_error does that

// if there is an error, break out of "do" loop and continue at "while(false)"
$out = @fopen($filename,"w");
if(!$out) {
print_error("Cannot open file: $filename");
break;
}

// write the server picture name to the server name file, and close the server
// name file
fputs($out,$name);
fclose($out);

// display message that client picture file was successfully copied to the
// server, display a prompt to look at updated server photo gallery, and supply
// the HTML link

?>

Picture added. Thanks.

Continue to the gallery

// exit to the server photo gallery
exit();
}
} while(false);

// you get to here only when "if(isset($picture))" is false, which means that
// no picture name has been submitted, therefore go display the input form where
// the necessary information can be entered

?>





Photo gallery - add


Photo gallery add

// start of segment of code for displaying input form

// using $PHP_SELF for value of "form action" causes form to refer to itself
// when "submit" button is clicked

?>

// pass the PHP constant MAX_FILE_SIZE to the HTML maximum file size
// constant MAX_FILE_SIZE

?>

// display the text boxes for entering user name and picture name, and store
// the entered values in PHP variables; browsing is enabled

?>

Your name is:

Your picture:

// display the "submit" button

?>




// ------------------------------------------------------
// FILE 2: DISPLAY THE SERVER PHOTO GALLERY




Photo gallery


Photo gallery

// full directory path
$filepath = "/home/httpd/html/tut/upload";

// user's path in browser -- same as full directory path
$url_path = "/tut/upload";

// get unique server directory used for this user session
$dir = dir($filepath);

// loop through all server subdirectories for this user session
while($entry=$dir->read()) {
// if entry is system file (doesn't have picture files), go to next entry in
// "while" loop
if($entry == "." || $entry == "..") {
continue;
}

// open server name file for read only; "@" prefix tells fopen not to print
// message if there is an error, since function print_error does that

// if there is an error, go to next entry in "while" loop
$fp = @fopen("$filepath/$entry/name","r");
if(!$fp) {
print "Bad entry: $entry
";
continue;
}

// get name of the server picture file and close the server name file
$name = fgets($fp,4096);
fclose($fp);

// display each picture and its file name; in addition, "alt=" causes the file
// name to be displayed as ToolTip text when mouse points to picture

?>


通過PHP的File函數(shù)庫來完成上傳圖像文件并讓其顯示_PHP"
alt=" echo $name ?>"> echo $name ?>


}
?>


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

PHP Tutorial
1502
276
Tips for dynamically creating new functions in golang functions Tips for dynamically creating new functions in golang functions Apr 25, 2024 pm 02:39 PM

Go language provides two dynamic function creation technologies: closure and reflection. closures allow access to variables within the closure scope, and reflection can create new functions using the FuncOf function. These technologies are useful in customizing HTTP routers, implementing highly customizable systems, and building pluggable components.

Complete collection of excel function formulas Complete collection of excel function formulas May 07, 2024 pm 12:04 PM

1. The SUM function is used to sum the numbers in a column or a group of cells, for example: =SUM(A1:J10). 2. The AVERAGE function is used to calculate the average of the numbers in a column or a group of cells, for example: =AVERAGE(A1:A10). 3. COUNT function, used to count the number of numbers or text in a column or a group of cells, for example: =COUNT(A1:A10) 4. IF function, used to make logical judgments based on specified conditions and return the corresponding result.

Things to note when Golang functions receive map parameters Things to note when Golang functions receive map parameters Jun 04, 2024 am 10:31 AM

When passing a map to a function in Go, a copy will be created by default, and modifications to the copy will not affect the original map. If you need to modify the original map, you can pass it through a pointer. Empty maps need to be handled with care, because they are technically nil pointers, and passing an empty map to a function that expects a non-empty map will cause an error.

Considerations for parameter order in C++ function naming Considerations for parameter order in C++ function naming Apr 24, 2024 pm 04:21 PM

In C++ function naming, it is crucial to consider parameter order to improve readability, reduce errors, and facilitate refactoring. Common parameter order conventions include: action-object, object-action, semantic meaning, and standard library compliance. The optimal order depends on the purpose of the function, parameter types, potential confusion, and language conventions.

C++ Function Exception Advanced: Customized Error Handling C++ Function Exception Advanced: Customized Error Handling May 01, 2024 pm 06:39 PM

Exception handling in C++ can be enhanced through custom exception classes that provide specific error messages, contextual information, and perform custom actions based on the error type. Define an exception class inherited from std::exception to provide specific error information. Use the throw keyword to throw a custom exception. Use dynamic_cast in a try-catch block to convert the caught exception to a custom exception type. In the actual case, the open_file function throws a FileNotFoundException exception. Catching and handling the exception can provide a more specific error message.

How to write efficient and maintainable functions in Java? How to write efficient and maintainable functions in Java? Apr 24, 2024 am 11:33 AM

The key to writing efficient and maintainable Java functions is: keep it simple. Use meaningful naming. Handle special situations. Use appropriate visibility.

Putting the entire earth into a neural network, the Beihang University team launched a global remote sensing image generation model Putting the entire earth into a neural network, the Beihang University team launched a global remote sensing image generation model Jun 09, 2024 pm 09:56 PM

Beihang's research team used a diffusion model to "replicate" the Earth? At any location around the world, the model can generate remote sensing images of multiple resolutions, creating rich and diverse "parallel scenes." Moreover, complex geographical features such as terrain, climate, and vegetation have all been taken into consideration. Inspired by Google Earth, Beihang's research team "loaded" satellite remote sensing images of the entire Earth into a deep neural network from an overhead perspective. Based on such a network, the team built MetaEarth, a global top-down visual generation model. MetaEarth has 600 million parameters and can generate remote sensing images with multiple resolutions, unbounded and covering any geographical location around the world. Compared with previous research, the global remote sensing image generation model has

Samsung will provide displays for Microsoft's MR headsets, and the devices are expected to be lighter and have clearer displays Samsung will provide displays for Microsoft's MR headsets, and the devices are expected to be lighter and have clearer displays Aug 10, 2024 pm 09:45 PM

Recently, Samsung Display and Microsoft signed an important cooperation agreement. According to the agreement, Samsung Display will develop and supply hundreds of thousands of OLEDoS panels for mixed reality (MR) head-mounted devices to Microsoft. Microsoft is developing an MR device for multimedia content such as games and movies. This device is expected to It will be launched after the OLEDoS specifications are finalized, mainly serving the commercial field, and is expected to be delivered as early as 2026. OLEDoS (OLED on Silicon) technology OLEDoS is a new display technology that deposits OLED on a silicon substrate. Compared with traditional glass substrates, it is thinner and has higher pixels. OLEDoS display and ordinary display

See all articles