web123456

Introduction to the technical content involved in web development - back-end PHP (2)

Introduction to the technical content involved in website development - back-end PHP (1) /xiaochenXIHUA/article/details/141000752?spm=1001.2014.3001.5501

I. PHP's common functions

1.1, PHP folder of common functions

PHP's directory common functions
serial number Catalog Common Functions clarification
1 $_SERVER['DOCUMENT_ROOT'] Get the root directory of your PHP project
2 dirname(__FILE__) Get the directory where the current php file is located.
3 is_dir(file path or file path and name) Determine whether the current content is a folder directory
4 scandir(directory path) List the files and directories in the currently specified directory
5 filetype (file path or file path and name) Returns the data type of the file, [file] for files and [dir] for directories.
6 opendir(file path) Open a folder and return to the folder resources
7 readdir(directory resources) Reads the contents of a specified directory resource one at a time
8 closedir (directory resources) Close open catalog resources

Implement a simple catalog content browsing function as shown below:

1. Create a new file named [ ] with the following contents:

  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <title> Testing common PHP functions </title>
  5. </head>
  6. <body>
  7. <?php
  8. // Specify the content type and encoding format of PHP pages
  9. header("Content-Type:text/html; charset=utf-8");
  10. //Get to the root directory
  11. $rootPath=$_SERVER['DOCUMENT_ROOT'];
  12. echo "The project root directory is [$rootPath 】 <br>";
  13. //Directory operations
  14. $curfilepathname=__FILE__;
  15. echo "The path and name where the current program is located is:$curfilepathname <br>";
  16. // Determine whether the current content is a path
  17. echo "【$curfilepathname ] is a path: ".is_dir($curfilepathname)."<br><br>";
  18. $curfilepath=dirname(__FILE__);
  19. echo "The path where the current program is located is:$curfilepath <br>";
  20. // Determine whether the current content is a path
  21. echo "【$curfilepath ] is a path: ".is_dir($curfilepath)."<br><br>";
  22. $curdirallfiles=scandir($curfilepath);
  23. echo "The directory where the current program is located [$curfilepath All files under] are: <br>";
  24. showdir($curdirallfiles,$curfilepath);
  25. echo "<br><br>";
  26. //Specified directory
  27. $testPath='E:\AllSoftware\phpStudy\PHPTutorial\WWW\php\test';
  28. if (is_dir($testPath)){
  29. echo "[$testPath] directory reads: <br>";
  30. //Open the specified directory
  31. if($curOpenDir=opendir($testPath)) {
  32. The //readdir method reads one item at a time.
  33. while (($file=readdir($curOpenDir))!==false) {
  34. // Get the full file path and file name.
  35. $fullPathFile=$testPath."\\".$file;
  36. // Get the type of the file
  37. $fileType=filetype($fullPathFile);
  38. if($fileType== "file"){
  39. echo "The file type is [$fileType],[$file] is the file, the full path and name of the file is [$fullPathFile]<br>";
  40. }
  41. else{
  42. echo "The file type is [$fileType],[$file] is the directory, the full path and name of the file is [$fullPathFile]<br>";
  43. }
  44. }
  45. // Close the specified directory
  46. closedir($curOpenDir);
  47. }
  48. }
  49. echo "<br><br>";
  50. function showdir(array $curdirallfiles,$curpath)
  51. {
  52. foreach($curdirallfiles as $key => $value){
  53. // Filtering . and . as operations that return to the previous level
  54. if ($value=='.'||$value=='..'){
  55. echo "<a href='./?fullpathname=$curpath'>$value</a> <br>";
  56. continue;
  57. }
  58. $value=iconv('gbk','utf-8',$value);
  59. $fullPath=$curpath."\\".$value;
  60. if(is_dir($fullPath)){
  61. $fullpath2=$fullPath.'\\'.$value;
  62. //Display directory icons and directory names (and directories can be clicked on to see the contents of the files and folders they contain)
  63. echo "<img src='../images/catalogs.png' width='20px' height='20px'/> <a href='./?fullpathname=$fullpath2'> $value</a> <br>";
  64. }
  65. else{
  66. //Display file icons and file names
  67. echo "<img src='. /images/files.png' width='20px' height='20px'/>$value <br>";
  68. }
  69. }
  70. }
  71. ?>
  72. </body>
  73. </html>

2, and then create a new file named [ ], and the content is as follows:

  1. <?php
  2. header("Content-Type:text/html;charset=UTF-8");
  3. $fullpathname =$_GET['fullpathname'];
  4. $curpath=dirname($fullpathname);
  5. $curdirallfiles=scandir($curpath);
  6. showdir($curdirallfiles,$curpath);
  7. function showdir(array $curDirAllFiles,$curPath)
  8. {
  9. foreach($curDirAllFiles as $key => $value){
  10. // Filtering . and . as operations that return to the previous level
  11. if ($value=='.'||$value=='..'){
  12. echo "<a href='./?fullpathname=$curPath'>$value</a> <br>";
  13. continue;
  14. }
  15. $value=iconv('gbk','utf-8',$value);
  16. $fullPath=$curPath."/".$value;
  17. // $value=iconv('gbk','utf-8',$value);
  18. if(is_dir($fullPath)){
  19. $fullpath2=$fullPath.'/'.$value;
  20. //Display directory icons and directory names (and directories can be clicked on to see the contents of the files and folders they contain)
  21. echo "<img src='../images/catalogs.png' width='20px' height='20px'/> <a href='./?fullpathname=$fullpath2'> $value</a> <br>";
  22. }
  23. else{
  24. //Display file icons and file names (and can delete, move, copy files)
  25. echo "<img src='. /images/files.png' width='20px' height='20px'/>$value <br>";
  26. }
  27. }
  28. }
  29. ?>

1.2, PHP file common functions

PHP file manipulation
serial number File Manipulation Methods clarification
1 fopen(file path and name, mode) Open the file in the specified mode, and return the corresponding file resources.
2 fwrite(open file resources, need to write data) Writes data to a file and returns the length of the data written.
3 fread(the resource of the open file, the length of the data to be read) Reads the contents of a file of the specified length
4 fgets(open file resources) Call this method once to read a line from a file
5 readfile(file path and name) Reads files and automatically prints displays
6 file_put_contents(file path and name, data to be saved) Save the content to a file (overwrite write, empty the file first before writing), if the file does not exist then create the file; the return result is the length of the saved content
7 file_get_contents(local file path and name or remote URL address) Reads the contents of an entire file into a string
File open (fopen) mode description
serial number Content of the model clarification
1 w Open by write, pointing the file pointer to the header and truncating the file size to zero. If the file does not exist it tries to create
2 w+ Opened in read-write mode, pointing the file pointer to the file header and truncating the file size to zero. If the file does not exist it tries to create
3 r Open in read-only mode, pointing the file pointer to the file header
4 r+ Open in read-write mode, pointing the file pointer to the file header
5 a Open by write, pointing the file pointer to the end of the file. If the file does not exist it tries to create[Additional document content]
6 a+ Opened in read-write mode, pointing the file pointer to the end of the file. If the file does not exist it tries to create
7 x Creates and opens the file as a write, pointing the file pointer to the file header. If the file already exists, the file open fopen() call fails and returns FALSE with an E_WARNING level error message. If the file does not exist, an attempt is made to create
8 x+ Creates and opens a file as read-write, pointing the file pointer to the header. If the file already exists, the file open fopen() call fails and returns FALSE with an E_WARNING level error message. If the file does not exist, an attempt is made to create
PHP Temporary Files
Previously, we will write the contents of the file saved to disk are permanent files; and the creation of temporary files on our development is also useful (i.e.: build a temporary file, after use will be automatically deleted, we do not need to maintain the deletion status of this file).
  1. <?php
  2. header("Content-Type:text/html;charset=UTF-8");
  3. //temporary files (windows system temporary files stored in [C:\Users\Username\AppData\Local\Temp directory] with php content is)
  4. //1. Create a temporary file
  5. $tmpfile=tmpfile();
  6. //2. Writing to temporary files
  7. $writeInfoToTmpfile=fwrite($tmpfile,"Testing messages written to temporary files1");
  8. echo "Temporary file write content 1 results:$writeInfoToTmpfile <br>";
  9. $writeInfoToTmpfile2=fwrite($tmpfile,"Second Write Test Temporary File Information 2");
  10. echo "Temporary file write content 2 results:$writeInfoToTmpfile2 <br>";
  11. // // Hibernate for 15 seconds to make it easier for us to go to [C:\Users\Username\AppData\Local\Temp directory] to view the contents of the file
  12. // sleep(15);
  13. // // Read temporary file mode 1
  14. // fseek($tmpfile,0);
  15. // rewind($tmpfile);
  16. // // Specify to read the contents of a 1K file.
  17. // $readTmpfileInfo=fread($tmpfile,1024);
  18. // // Close the temporary file (the file will be deleted as soon as it is closed)
  19. // fclose($tmpfile);
  20. //Read Temporary Files Mode II
  21. $tmpfile_path = stream_get_meta_data($tmpfile)['uri'];
  22. $readTmpfileInfo=file_get_contents($tmpfile_path);
  23. echo "Read the temporary file information as:$readTmpfileInfo <br>";
  24. ?>
Renaming, moving, copying and deleting PHP files
serial number Manipulation of documents clarification
1 rename(original file path and name, original file path and new name) Rename the file
2 rename(original file path and name, new file path and name) Moves the file to the specified path and can change the name
3 copy(original file path and name, new file path and name)) Files can be copied to a specified path and names can be changed.
4 unlink(path and name of the file) Delete the specified file
PHP's common functions for file attributes
serial number Common Functions for File Attributes clarification
1 bool file_exists ( $specifies the file name or file path) Detecting the existence of a file
2 bool is_readable ( $specifies the file name or file path) Detecting whether a file is readable
3 bool is_writeable ( $specifies the file name or file path) Detecting whether a file is writable
4 bool is_executable ( $specifies the file name or file path) Detecting whether a file is executable
5 bool is_file ( $specifies the file name or file path) Detecting whether a file
6 void clearstatcache ( void )  Clearing the state cache of a file
PHP file path function
serial number File Path Functions clarification
1 pathinfo(path and name of the file) Returns an associative array containing the path information. Whether an associative array or a string is returned depends on theflags(If specified, the specified elements will be returned; they include:PATHINFO_DIRNAME、 PATHINFO_BASENAME、 PATHINFO_EXTENSION、 PATHINFO_FILENAME

If you don't specify theflags The default is to return all units.

2 parse_url(url address)

Parses the URL and returnsassociative arraywhich contains the various components that appear in the URL. The values of the elements of the arraywill not (act, happen etc) URL Decoding

PHP: parse_url - Manual

3 http_build_query()

Generate request string after URL-encoding

PHP: http_build_query - Manual

4 http_build_url()

Generate a URL

http_build_url - [ php Chinese Manual ] - Online Native Manuals

  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <title> Testing common PHP functions </title>
  5. </head>
  6. <body>
  7. <?php
  8. // Specify the content type and encoding format of PHP pages
  9. header("Content-Type:text/html; charset=utf-8");
  10. $dateInfos=date('Y-m-d H:i:s');
  11. $filePthAndName="../files/";
  12. //file_put_contents will be written to the file (overwrite write, first empty the file in the write), if the file does not exist then create the file; the return result is the length of the file
  13. $result=file_put_contents($filePthAndName,"$dateInfos This is the information about the contents of the test write file! \n This is the content of the second line \n This is the content of the third line ");
  14. echo "[file_put_contents write content]$result";
  15. echo "<br>";
  16. //readfile returns the length of the read content, but after reading the file, it will display the contents of the file itself.
  17. $fileinfo=readfile($filePthAndName);
  18. echo "<br>";
  19. echo "[readfile reads contents]$fileinfo <br>";
  20. //file_get_contents returns the contents of the file being read
  21. $fileinfo2=file_get_contents($filePthAndName);
  22. echo "[file_get_contents reads the contents of a file]$fileinfo2 <br>";
  23. //file_get_contents supports reading web url addresses (can be used with file_put_contents to download files, images, etc. for local storage)
  24. $networkFilePathName="/wp-includes/js/jquery/";
  25. $networkFile=file_get_contents($networkFilePathName);
  26. echo "The contents of the network file read by [file_get_contents] are as follows:<br>$networkFile <br>";
  27. //Save the document
  28. $saveFilePathName="../files/";
  29. $downloadFile=file_put_contents($saveFilePathName,$networkFile);
  30. echo "<br> from [...$networkFilePathName ] to download the file and save it to [$saveFilePathName ] The length of the file is [$downloadFile 】 ";
  31. echo "<br><br>";
  32. echo "<br>";
  33. //Document manipulation
  34. $filePathname22='../files/';
  35. //1. Opening of documents
  36. $openFile=fopen($filePathname22,'w');
  37. //2. Write to file (fwrite returns the length of the data written)
  38. $writeFile=fwrite($openFile,"Hello, milk coffee \n the second line of content \n the third line of content");
  39. echo "[fwrite write to file] Result:$writeFile <br>";
  40. //3. Close the open file after writing it.
  41. fclose($openFile);
  42. //1. Opening of documents
  43. $openFile2=fopen($filePathname22,'r');
  44. //2, read the file way a [fread] need to specify the length of the file content to read, inconvenience
  45. $readfile1=fread($openFile2,6);
  46. echo "[fread reads the file]:$readfile1 <br>";
  47. / / 2, read the file way two [fgets] (call once to read a line of data)
  48. $readFile2=fgets($openFile2);
  49. echo "[fgets reads the file for the first time]:$readFile2 <br>";
  50. $readFile2=fgets($openFile2);
  51. echo "[fgets reads the file for the second time]:$readFile2 <br>";
  52. //3. Remember to close the file to release resources after the file operation is completed.
  53. fclose($openFile2);
  54. //1. Opening of documents (by appending to the end of the document)
  55. $openFile3=fopen($filePathname22,'a');
  56. //2. Append content (return the length of the appended content after success)
  57. $appendInfo=fwrite($openFile3,"This is a test addition.");
  58. echo "Additional content results:$appendInfo <br>";
  59. //3. Remember to close the file to release resources after the file operation is completed.
  60. fclose($openFile3);
  61. //1. Opening of documents
  62. $openFile4=fopen('../files/','x');
  63. $fileOpc=fwrite($openFile4,"--- Test additions aaa----");
  64. echo "Add content results:$fileOpc <br><br><br>";
  65. fclose($openFile4);
  66. //temporary files (windows system temporary files stored in [C:\Users\Username\AppData\Local\Temp directory] with php content is)
  67. //1. Create a temporary file
  68. $tmpfile=tmpfile();
  69. //2. Writing to temporary files
  70. $writeInfoToTmpfile=fwrite($tmpfile,"Testing messages written to temporary files1");
  71. echo "Temporary file write content 1 results:$writeInfoToTmpfile <br>";
  72. $writeInfoToTmpfile2=fwrite($tmpfile,"Second Write Test Temporary File Information 2");
  73. echo "Temporary file write content 2 results:$writeInfoToTmpfile2 <br>";
  74. // // Hibernate for 15 seconds to make it easier for us to go to [C:\Users\User Name\AppData\Local\Temp directory] to view the contents of the file
  75. // sleep(15);
  76. // // Read temporary file mode 1
  77. // fseek($tmpfile,0);
  78. // rewind($tmpfile);
  79. // // Specify to read the contents of a 1K file.
  80. // $readTmpfileInfo=fread($tmpfile,1024);
  81. // // Close the temporary file (the file will be deleted as soon as it is closed)
  82. // fclose($tmpfile);
  83. //Read Temporary Files Mode II
  84. $tmpfile_path = stream_get_meta_data($tmpfile)['uri'];
  85. $readTmpfileInfo=file_get_contents($tmpfile_path);
  86. echo "Read the temporary file information as:$readTmpfileInfo <br>";
  87. //Move copies and delete files
  88. //1, use rename method if it is in the same path means rename (return result 1 means success, otherwise failure)
  89. $renameresult=rename('./test/','./test/');
  90. echo "The result after renaming the file:$renameresult <br>";
  91. / / 2, the use of rename method if it is in a different path, it is said to move the file and file rename (return result 1 indicates success, otherwise failed)
  92. $renameresult2=rename('./test/','../test_2.php');
  93. echo "The result of moving and renaming a file:$renameresult2 <br>";
  94. //3. Reproduction of documents
  95. $copyfileresult=copy("../test_2.php","./test/");
  96. echo "The result after copying and renaming the file:$copyfileresult <br>";
  97. //4. Deletion of documents
  98. $delfileresult=unlink("../test_2.php");
  99. echo "Results after deletion of files:$delfileresult <br><br>";
  100. //5. Getting information about file paths
  101. $curfilepath22=__FILE__;
  102. $filepathinfo=pathinfo($curfilepath22);
  103. echo "[$curfilepath22The message of] is: <br>";
  104. print_r ($filepathinfo);
  105. echo '<br>';
  106. echo"File path:".$filepathinfo['dirname'].'<br>';
  107. echo"File name:".$filepathinfo['basename'].'<br>';
  108. echo"File extension:".$filepathinfo['extension'].'<br>';
  109. echo"File name without file extension:".$filepathinfo['filename'].'<br>';
  110. ?>
  111. </body>
  112. </html>

 

Contents of the provisional document

1.3 PHP file permission settings

Linux system file permissions in detail_linux file permissions/xiaochenXIHUA/article/details/139974153?spm=1001.2014.3001.5501

existLinuxsystem, PHP can use the chmod function to set permissions as follows:

  1. <?php
  2. // Modify the file permissions of /var/log/nginx/ on linux systems to 755.
  3. chmod("/var/log/nginx/", 755);
  4. chmod("/var/log/nginx/", "u+rwx,go+rx");
  5. //Modify directory permissions to 755
  6. chmod("/var/log/nginx", 0755);
  7. ?>

Second, PHP file transfer operations

2.1 PHP configuration for file uploading

Use PHP for file uploads need to [] configuration file operation (that is: will [file_uploads = On] uncommented and enabled); modification is completed to save the configuration file and the need to restart the PHP service will take effect.

PHP upload file common configuration items
serial number Common configuration items for uploading files clarification
1 file_uploads on means enable the file upload function, off means disable the file upload function.
2 max_file_uploads Maximum number of files allowed to be uploaded (can be modified according to your project needs)
3 upload_max_filesize Maximum allowed upload file size (default is 2M) (can be modified according to your project needs)
4 post_max_size Maximum value that can be received by PHP through the form POST method (default is 8M) (can be modified according to your project needs)
5 upload_tmp_dir Directory where temporary files are stored (default is C:\Users\User Name\AppData\Local\Temp)
If you need to upload large files, you will also need to set the following three configuration items
1 max_execution_time Maximum time value for each PHP script page to run (in seconds; default 30 seconds)
2 max_input_time Maximum time required for each PHP script page to receive data (in seconds; default 60 seconds)
3 memory_limit Maximum memory per PHP script page limit (default: 128M)

Note: PHP in the [ ] configuration file after any content modification, you need to restart the PHP service before it takes effect

Suggested parameters: upload_max_filesize < upload_max_filesize < post_max_size < memory_limit

 

Alternatively, you can use the [phpiP interest rate].

 

  1. <?php
  2. phpinfo();
  3. ?>

2.2. Idea and realization of file uploading

1、User operation

1. Select the document;

2. Submission of documents;

2、Upload file process ideas

1、Get to the submitted file (recommended to use the POST method to receive);

2. Determine the size of the file (determine whether the file is out of range);

3, determine the file type (get the file type and determine whether it meets the requirements);

4. Generate a new file name (because the use of the original name may have some sensitive violations of laws and regulations; or easy to be utilized by hackers);

6. Move the temporary file to the specified path for permanent storage;

The following is the realization of a simple netbook function code content:

1, create a new page named [ ], for file upload, content display, the code is as follows:

  1. <!DOCTYPE>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title> small netbook</title>
  6. </head>
  7. <body>
  8. <form method="post">
  9. <input type="submit" name="delBtn" value="Delete">
  10. <input type="submit" name="moveBtn" value="Move.">
  11. <input type="submit" name="copyBtn" value="Copy.">
  12. </form>
  13. <form method='post'><input type='submit' name='delBtn' value='Delete'><input type='submit' name='moveBtn' value='Move'><input type='submit' name='copyBtn' value='Copy'></form>
  14. <hr>
  15. <form action="../php/" method="post" enctype="multipart/form-data">
  16. <p style="font-size: 36px; color: orange;" > Example of uploading a file </p>
  17. <div border="3">
  18. <input type="file" name="uploadfile">
  19. <input type="submit" name="Submit">
  20. </div>
  21. </form>
  22. <hr>
  23. <?php
  24. header("Content-Type:text/html;charset=utf-8");
  25. $rootPath=$_SERVER['DOCUMENT_ROOT'];
  26. echo "The project root directory is [$rootPath 】 <br>";
  27. $uploadFilePath=$rootPath."/files/uploadfiles";
  28. echo "The path to the uploaded file is [$uploadFilePath 】<br>";
  29. $uploadFileAllFile=scandir($uploadFilePath);
  30. showdir($uploadFileAllFile,$uploadFilePath);
  31. function showdir(array $curDirAllFiles,$curPath)
  32. {
  33. foreach($curDirAllFiles as $key => $value){
  34. // Filtering . and . Do not show
  35. if ($value=='.'||$value=='..'){
  36. echo "<a href='./?fullpathname=$curPath'>$value</a> <br>";
  37. continue;
  38. }
  39. $fullPath=$curPath."/".$value;
  40. $value=iconv('gbk','utf-8',$value);
  41. if(is_dir($fullPath)){
  42. $fullpath2=$fullPath.'/'.$value;
  43. // echo "<img src='../images/catalogs.png' width='20px' height='20px'/> <a href='./?fullpathname=$fullpath2'> $value</a> &nbsp;<a href='./?delCurFile=$fullPath'>removing</a> <a href='./?moveCurFile=$fullPath'>mobility</a> <a href='./?copyCurFile=$fullPath'>make a copy of</a><br>";
  44. echo "<img src='../images/catalogs.png' width='20px' height='20px'/> <a href='./?fullpathname=$fullpath2'> $value<br>";
  45. }
  46. else{
  47. echo "<img src='. /images/files.png' width='20px' height='20px'/>$value &nbsp;<a href='./?delCurFile=$fullPath' > delete </a> <a href='. /?moveCurFile=$fullPath' > mobile </a> <a href='. /?copyCurFile=$fullPath'>copy</a><br>";
  48. }
  49. }
  50. }
  51. // echo "<script>var v=( 'Are you sure you want to delete this record? ');
  52. // ='res=' + v;
  53. // </script>";
  54. // $res=$_COOKIE['res'];
  55. // echo "Selection result of the popup window: $res";
  56. if(isset($_POST["delBtn"])) {
  57. echo "You clicked the delete button <br>";
  58. }
  59. if(isset($_POST["moveBtn"])) {
  60. echo "You clicked the move button <br>";
  61. }
  62. if(isset($_POST["copyBtn"])) {
  63. echo "You clicked the copy button <br>";
  64. }
  65. ?>
  66. </body>
  67. </html>

2, and then create a new interface named [ ] for the directory and file display and switching, the code is as follows:

  1. <?php
  2. header("Content-Type:text/html;charset=UTF-8");
  3. $fullpathname =$_GET['fullpathname'];
  4. $curpath=dirname($fullpathname);
  5. $curdirallfiles=scandir($curpath);
  6. showdir($curdirallfiles,$curpath);
  7. function showdir(array $curDirAllFiles,$curPath)
  8. {
  9. foreach($curDirAllFiles as $key => $value){
  10. // Filtering . and . as operations that return to the previous level
  11. if ($value=='.'||$value=='..'){
  12. echo "<a href='./?fullpathname=$curPath'>$value</a> <br>";
  13. continue;
  14. }
  15. $value=iconv('gbk','utf-8',$value);
  16. $fullPath=$curPath."/".$value;
  17. // $value=iconv('gbk','utf-8',$value);
  18. if(is_dir($fullPath)){
  19. $fullpath2=$fullPath.'/'.$value;
  20. //Display directory icons and directory names (and directories can be clicked on to see the contents of the files and folders they contain)
  21. // echo "<img src='../images/catalogs.png' width='20px' height='20px'/> <a href='./?fullpathname=$fullpath2'> $value</a> &nbsp;<a href='./?delCurFile=$fullPath'>removing</a> <a href='./?moveCurFile=$fullPath'>mobility</a> <a href='./?copyCurFile=$fullPath'>make a copy of</a><br>";
  22. echo "<img src='../images/catalogs.png' width='20px' height='20px'/> <a href='./?fullpathname=$fullpath2'> $value</a> <br>";
  23. }
  24. else{
  25. //Display file icons and file names (and can delete, move, copy files)
  26. echo "<img src='. /images/files.png' width='20px' height='20px'/>$value &nbsp;<a href='./?delCurFile=$fullPath' > delete </a> <a href='. /?moveCurFile=$fullPath' > mobile </a> <a href='. /?copyCurFile=$fullPath'>copy</a><br>";
  27. // echo "<img src='../images/file.png' width='20px' height='20px'/> $value <br>";
  28. }
  29. }
  30. }
  31. ?>

3, and finally a new interface named [ ] for the deletion of files, move and copy operations, the code is as follows:

  1. <?php
  2. header("Content-Type:text/html;charset=utf-8");
  3. echo "<a style='font-size:36px;color:blue' href='. /'>Return to home page</a> <br>";
  4. // Deletion of documents
  5. $delCurFile =$_GET['delCurFile'];
  6. echo "[Access to documents to be deleted]$delCurFile <br>";
  7. // Get the name of the document
  8. $filename = pathinfo($delCurFile,PATHINFO_BASENAME);
  9. if(file_exists($delCurFile)){
  10. echo "[Preparation for deletion of documents]$delCurFile <br>";
  11. $filePathInfo=pathinfo($delCurFile);
  12. $result = unlink($delCurFile);
  13. echo "Delete file [".$filePathInfo['basename']."] the result is:";
  14. if($result){
  15. echo "<p style='font-size:36px;color:green'>Deleted successfully</P> <br>";
  16. }else{
  17. echo "<p style='font-size:36px;color:red'>Delete failed</P> <br>";
  18. }
  19. }
  20. //Movement of documents
  21. $moveCurFile =$_GET['moveCurFile'];
  22. echo "[Access to documents to be moved]$moveCurFile <br>";
  23. if(file_exists($moveCurFile)){
  24. echo "[Preparing to move documents]$moveCurFile <br>";
  25. //Get the contents of the document
  26. $filePath=pathinfo($moveCurFile,PATHINFO_DIRNAME);
  27. echo "Path to the file to be moved:$filePath <br>";
  28. //Get the name of the file and the name of the extension
  29. $fileNameExtension=pathinfo($moveCurFile,PATHINFO_BASENAME);
  30. echo "The path and extension name of the file to be moved:$fileNameExtension <br>";
  31. //New file path and name
  32. $newFilePathName=$filePath.'/test/'.$fileNameExtension;
  33. echo "New file path and name:$newFilePathName <br>";
  34. $result=rename($moveCurFile, $newFilePathName);
  35. if($result){
  36. echo "<p style='font-size:36px;color:green'> The move was successful and the path after the move is: test/.$fileNameExtension</P> <br>";
  37. }
  38. else{
  39. echo "<p style='font-size:36px;color:red'> move failed</P> <br>";
  40. }
  41. }
  42. //Copying of documents
  43. $copyCurFile =$_GET['copyCurFile'];
  44. echo "[Document to be copied is obtained.]$copyCurFile <br>";
  45. if(file_exists($copyCurFile)){
  46. echo "[Preparation of documents for reproduction]$copyCurFile <br>";
  47. //Get the contents of the document
  48. $filePath=pathinfo($copyCurFile,PATHINFO_DIRNAME);
  49. echo "Path to the file to be copied:$filePath <br>";
  50. $fileName = pathinfo($copyCurFile,PATHINFO_FILENAME);
  51. echo "The name of the file to be copied:$fileName <br>";
  52. $fileExtension = pathinfo($copyCurFile,PATHINFO_EXTENSION);
  53. echo "The extension name of the file to be copied:$fileExtension <br>";
  54. $newFilePathName=$filePath."/".$fileName."(1).".$fileExtension;
  55. echo "The name of the copied file is:$newFilePathName <br>";
  56. $result=copy($copyCurFile,$newFilePathName);
  57. echo "[Reproduction of results]$result";
  58. if($result){
  59. echo "<p style='font-size:36px;color:green'> The copy was successful and the name of the copied file is:$newFilePathName</P> <br>";
  60. }
  61. else{
  62. echo "<p style='font-size:36px;color:red'> copy failed</P> <br>";
  63. }
  64. }
  65. ?>

Third, PHP's other operations

3.1 Functions in PHP that can execute system commands

Functions in PHP that can execute system commands
serial number Functions that can execute system commands clarification
1 exec

Execution of an external program

PHP: exec - Manual

2 system(command)

Execute an external program and display the output (recommended)

PHP: system - Manual

  1. <?php
  2. header("Content-Type:text/html;charset=GB2312");
  3. //View system IP information content command
  4. $cmd="ipconfig";
  5. //View System Configuration Information Command for PHP
  6. $cmd=phpinfo();
  7. //Execute the [ipconfig] system command and save the result to a file.
  8. $cmd="ipconfig > ../files/";
  9. $cmdResult=system($cmd);
  10. echo "<br>";
  11. // $convertcmdResult=iconv("gbk","utf-8",$cmdResult);
  12. // $convertcmdResult=mb_convert_encoding($cmdResult,"utf-8","gb2312");
  13. echo "$cmdResult <br>";
  14. // $cmdResult2=exec($cmd);
  15. // $convertcmdResult=mb_convert_encoding($cmdResult2,"utf-8","gbk");
  16. // echo "Result after exec command [$cmd 】: $convertcmdResult <br>";";
  17. ?>

3.2 Error Handling in PHP

As we write the code can not guarantee that there are no bugs and errors, then there are only these exceptions and errors, if you do not set up these exceptions and errors to capture the processing; then these exceptions and errors will be displayed in front of the user, which will lead to the server's sensitive information leaked out, not conducive to the security of the system and the server (we hope that the exceptions and errors will not be displayed to the user, but simply (we hope that the exception and error information will not be shown to the user, but only recorded for internal development and operation and maintenance personnel to use).

PHP Error Types
serial number PHP Error Types clarification
1 E_ERROR  Error type, the file code is directly interrupted and no longer executed (the most serious, must be resolved)
2 E_WARNING Warning type, more serious problem; code will continue to run down the line (also serious, must be fixed)
3 E_NOTICE Tip type, some small problems will not affect the operation of the program (often occurs in the project code is not defined in the case) (you can not care, but NOTICE type error will affect the efficiency of the execution of PHP)
(depending on company requirements)
4 E_PARSE Compile-time syntax parsing error type; parsing errors are generated only by the parser (parse errors, which are syntax misspellings, must be resolved)
5 E_ALL All errors and warnings
6 E_STRICT Enable PHP suggestions for code changes to ensure optimal interoperability and forward compatibility of code
7 E_DEPRECATED Enabling this will give warnings about code that may not work properly in future releases

PHP: Error Handling - Manual

PHP Error Handling

        PHP in the [] configuration item [display_errors] is to control whether the error message output to the web page display. In the production environment this configuration must be turned off to display errors, only when the development can be opened for debugging use.

Misconfiguration of configuration files in PHP
serial number Misconfiguration of configuration files in PHP clarification
1 display_errors = On

Controls whether error messages for the entire PHP environment are displayed on the interface [on means display; off means off].

PHP: Runtime Configuration - Manual

2 error_reporting = E_ALL

Controls whether errors sent by the PHP engine are displayed, output, and logged.

1. error_reporting = E_ALL (indicating that all errors are displayed);

2、error_reporting = E_ALL & ~ E_NOTICE (means show all errors but exclude hints);

3. error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED (indicates that all errors are displayed, but excludes hints, compatibility and future compatibility);

Error Logging Configuration

(Everything that has been done in [ ] needs to be restarted for the PHP service to take effect)

1 log_errors

Whether to enable logging (on for on, off for off)

PHP: Runtime Configuration - Manual

2 log_errors_max_len Maximum record length for single line errors (default: 1024 bytes)
3 error_log

Where the error log is recorded (you can specify either syslog or a path; where syslog means system logging[)windowsThe system is in the computer's event viewer - application logs. linux defaults to: /etc/.)

PHP: Runtime Configuration - Manual

No modification of server PHP configuration file permissions handling error method
Serial number does not have server PHP configuration file modification permissions to handle the error method
  1. <?php
  2. header("Content-Type:text/html;charset=utf-8");
  3. //Modify the error status of the server [this sets whether to output error messages to the web page for display, this setting must be turned off for production environments].
  4. //(scope is limited to the current PHP code file, generally used for code start enable)
  5. ini_set("display_errors",0);
  6. $display_errors0=ini_get("display_errors");
  7. echo "0-The current error status displayed in the server is:$display_errors0 <br>";
  8. // // Close all errors
  9. // error_reporting(0);
  10. // // Display all errors
  11. // error_reporting(E_ALL);
  12. //Display all errors without alerts
  13. error_reporting(E_ALL & ~ E_NOTICE);
  14. $tmp=$_GET['info'];
  15. echo "$tmp <br";
  16. $display_errors=ini_get("display_errors");
  17. echo "1-The error status currently displayed in the server is:$display_errors <br>";
  18. ?>
  1. <?php
  2. /* Error Message Type Description
  3. 0 Send to default error_log location
  4. 1 Send to a specified mail location
  5. 3 Send to a specified file location
  6. */
  7. // Unable to connect to the Mysql database server, logged directly to the location specified in error_log.
  8. error_log("Unable to connect to Mysql database server server");
  9. //Can send mail, but must have mail system configured.
  10. error_log('Errors can be reported by email so that operations and maintenance staff can receive alerts in time to deal with them',1 ,'ptest@');
  11. // Recorded in the specified location
  12. error_log("This is an error message.", 3, "d:/test/");
  13. ?>

3.3 Serialization and Deserialization in PHP

PHP: serialize - Manual /manual/zh/PHP: class_uses - Manual /manual/zh/PHP: Manual Quick Referencehttps:///?pattern=class&scope=quickrefPHP: unserialize - Manual /manual/zh/

  1. <?php
  2. header("Content-Type:text/html;charset=utf-8");
  3. // Create a human information object
  4. class peopleInfo{
  5. var $name; // Define the name attribute
  6. var $sex; // Define the gender attribute
  7. var $age;
  8. // // Constructor
  9. // function __construct() {
  10. // }
  11. // Define a constructor (to accept incoming information)
  12. function peopleInfo($name,$sex,$age){
  13. $this->name = $name;
  14. $this->sex = $sex;
  15. $this->age= $age;;
  16. }
  17. //Printing information
  18. function printInfo() {
  19. echo "My name is:".$this->name." Gender is: ".$this->sex." Age is: ".$this->age."<br>";
  20. }
  21. //Special methods for automatic destruction of objects (memory reclamation)
  22. function __destruct(){
  23. echo "Object has been destroyed <br>";
  24. echo phpinfo();
  25. }
  26. }
  27. // Use of human information objects
  28. $peopleInfo=new peopleInfo("Coffee with milk.","Male.","26");
  29. // Call the print method of the human information object
  30. $peopleInfo->printInfo();
  31. // Specify the content of the attributes of the human information object separately
  32. $peopleInfo->name = "Choucie.";
  33. $peopleInfo->sex = "Female.";
  34. $peopleInfo->age = "27";
  35. $peopleInfo->printInfo();
  36. echo gettype($peopleInfo);
  37. echo "<hr>";
  38. // Serialize arrays
  39. $tmpArray=array('Milk coffee','Zhou Xi','Yang Xinyi');
  40. $tmpSerialize=serialize($tmpArray);
  41. echo "The string after serializing the array is:$tmpSerialize <br><hr>";
  42. // Deserialize array strings
  43. $tmpUnserialize=unserialize($tmpSerialize);
  44. echo "<br> deserialized string [$tmpSerialize The] post-data type is:".gettype($tmpUnserialize)." reads: ".$tmpUnserialize[0].$tmpUnserialize[1].$tmpUnserialize[2]."<br><hr>";
  45. //Serialize class objects
  46. $tmpClassObj=new peopleInfo("Yang Xinyi","Female.","26");
  47. $tmpClassObjSerialize=serialize($tmpClassObj);
  48. echo "The string after serializing the class object is:$tmpClassObjSerialize <br><hr> ";
  49. // Deserialize strings of class objects
  50. $tmpClassObjUnserialize=unserialize($tmpClassObjSerialize);
  51. echo "<br> deserialized string [$tmpClassObjSerialize The] post-data type is:".gettype($tmpClassObjSerialize)."<br>";
  52. //Calls the contents of the deserialized class object method
  53. $tmpClassObjUnserialize->printInfo();
  54. $tmpClassObjUnserialize->__destruct();
  55. ?>

The results are as follows.

3.4. Operation in PHPMysql database

PHP: Mysql (raw) - Manual /manual/zh/PHP: mysql_connect - Manual /manual/zh/PHP: mysql_query - Manual /manual/zh/

  1. <?php
  2. header("Content-Type:text/html;charset=utf-8");
  3. //Simulate incoming username and password to database query
  4. $usr=$_GET['usr'];
  5. $pwd=$_GET['pwd'];
  6. echo "The username obtained is [$usr The password is [$pwd 】<br><hr>";
  7. // Link to mysql database
  8. $mysqlDB=mysqli_connect("127.0.0.1","root","root","coffeemilk",3306);
  9. //query sql
  10. $sql="select * from user where username='$usr' and password='$pwd';";
  11. $sqlresult = mysqli_query($mysqlDB,$sql);
  12. var_dump($sqlresult);
  13. $sqlRownum=$sqlresult->num_rows;
  14. if($sqlRownum == 1) {
  15. echo "<p style='font-size:26px;color:green;'>Congratulations, login successful! </p>";
  16. }
  17. else {
  18. echo "<p style='font-size:26px;color:red;'> Unfortunately, login failed! </p>";
  19. }
  20. echo "<hr> implementation$sql The result of the query is: <br>";
  21. while($row = mysqli_fetch_array($sqlresult)) {
  22. echo "User ID:".$row["id"]." Username:".$row["username"]." Password:".$row['password']." Created on:".$row["reg_time"]."<br><hr>";
  23. }
  24. //Insert sql
  25. $sqlInsert="insert into user(username,password,reg_time)value('zhangsan','987654',current_timestamp())";
  26. $sqlInsertResult=mysqli_query($mysqlDB,$sqlInsert);
  27. echo "Execution [$sqlInsert The result of the] insert statement is:$sqlInsertResult <br>";
  28. if ($sqlInsertResult==1) {
  29. echo "<p style='font-size:26px;color:green;'>Congratulations, inserted data successfully! </p>";
  30. }else{
  31. echo "<p style='font-size:26px;color:red;'> Unfortunately, inserting the data failed! </p>";
  32. }
  33. //Finally close the Mysql database link
  34. mysqli_close($mysqlDB);
  35. ?>

3.5. cookies andsession

PHP: setcookie - Manual /manual/zh/PHP: $_COOKIE - Manual /manual/zh/PHP: Sessions - Manual /manual/zh/PHP: Introduction - Manual /manual/zh/

  1. <?php
  2. //1, set cookie (content is displayed in plaintext, not secure)
  3. setcookie("usr",$usr);
  4. setcookie("loginStatus",1);
  5. //2, get cookie information (content is displayed in plaintext, not secure)
  6. $usr=$_COOKIE['usr'];
  7. $loginStatus=$_COOKIE['loginStatus'];
  8. ?>
  1. <?php
  2. //1, set session (a token data)
  3. session_start();
  4. $_SESSION['usr']=$usr;
  5. $_SESSION['loginTime']=time();
  6. $_SESSION['loginStatus']=1;
  7. //2, get the session information (a token data)
  8. session_start();
  9. $usr=isset($_SESSION['usr']);
  10. $loginStatus=isset($_SESSION['loginStatus']);
  11. ?>
(The href attribute is a readable and writable string that sets or returns the full URL of the currently displayed document)

1, a new commodity home page named [ ] code is as follows:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title> Test Cookie for Product Home</title>
  6. </head>
  7. <body>
  8. <div>
  9. <?php
  10. header("Content-Type:text/html;charset=utf-8");
  11. //Set this page not to display error messages
  12. ini_set("display_errors",0);
  13. // // 1. Getting the cookie information (the content is displayed in plaintext, which is not secure)
  14. // $usr=$_COOKIE['usr'];
  15. // $loginStatus=$_COOKIE['loginStatus'];
  16. //2, get the session information (a token data)
  17. session_start();
  18. $usr=isset($_SESSION['usr']);
  19. $loginStatus=isset($_SESSION['loginStatus']);
  20. if($loginStatus!=1){
  21. echo "<a href='. /'>login</a>";
  22. }
  23. ?>
  24. <hr>
  25. <div style="font-size:36px;color:orange">
  26. Below is the listing information for the various businesses
  27. </div>
  28. </div>
  29. </body>
  30. </html>

2, a new login interface named [ ] code is as follows:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>login screen</title>
  6. </head>
  7. <body>
  8. <div>
  9. <form action="./" method="post">
  10. <p style="font-size: 36px; color: chocolate;">Welcome to the login screen</p>
  11. <div>Username:<input type="text" name="usr"></div>
  12. <div>Password:<input type="password" name="pwd"></div>
  13. <input type="submit" name="Submit">
  14. </form>
  15. </div>
  16. </body>
  17. </html>

3, a new database connection verification page named [ ] code is as follows:

  1. <?php
  2. header("Content-Type:text/html;charset=utf-8");
  3. //Simulate incoming username and password to database query
  4. $usr=$_POST['usr'];
  5. $pwd=$_POST['pwd'];
  6. echo "The username obtained is [$usr The password is [$pwd 】<br><hr>";
  7. // Link to mysql database
  8. $mysqlDB=mysqli_connect("127.0.0.1","root","root","coffeemilk",3306);
  9. //query sql
  10. $sql="select * from user where username='$usr' and password='$pwd';";
  11. $sqlresult = mysqli_query($mysqlDB,$sql);
  12. var_dump($sqlresult);
  13. $sqlRownum=$sqlresult->num_rows;
  14. if($sqlRownum == 1) {
  15. echo "<p style='font-size:26px;color:green;'>Congratulations, login successful! </p>";
  16. // //1. Setting cookies (content is displayed in plaintext, not secure)
  17. // setcookie("usr",$usr);
  18. // setcookie("loginStatus",1);
  19. //2, set session (a token data)
  20. session_start();
  21. $_SESSION['usr']=$usr;
  22. $_SESSION['loginTime']=time();
  23. $_SESSION['loginStatus']=1;
  24. echo "Automatically return to home page <script>='. /'</script>";
  25. }
  26. else {
  27. echo "<p style='font-size:26px;color:red;'>'Unfortunately, login failed! Please log in again'</p>";
  28. echo "<script>alert('Unfortunately, login failed! Please log in again'); ='. /'</script>";
  29. }
  30. //Finally close the Mysql database link
  31. mysqli_close($mysqlDB);
  32. ?>