upload.php
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:3k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <?php 
  2. /*
  3.  * FCKeditor - The text editor for internet
  4.  * Copyright (C) 2003-2005 Frederico Caldeira Knabben
  5.  * 
  6.  * Licensed under the terms of the GNU Lesser General Public License:
  7.  *  http://www.opensource.org/licenses/lgpl-license.php
  8.  * 
  9.  * For further information visit:
  10.  *  http://www.fckeditor.net/
  11.  * 
  12.  * File Name: upload.php
  13.  *  This is the "File Uploader" for PHP.
  14.  * 
  15.  * File Authors:
  16.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  17.  */
  18. require('config.php') ;
  19. require('util.php') ;
  20. // This is the function that sends the results of the uploading process.
  21. function SendResults( $errorNumber, $fileUrl = '', $fileName = '', $customMsg = '' )
  22. {
  23. echo '<script type="text/javascript">' ;
  24. echo 'window.parent.OnUploadCompleted(' . $errorNumber . ',"' . str_replace( '"', '\"', $fileUrl ) . '","' . str_replace( '"', '\"', $fileName ) . '", "' . str_replace( '"', '\"', $customMsg ) . '") ;' ;
  25. echo '</script>' ;
  26. exit ;
  27. }
  28. // Check if this uploader has been enabled.
  29. if ( !$Config['Enabled'] )
  30. SendResults( '1', '', '', 'This file uploader is disabled. Please check the "editor/filemanager/upload/php/config.php" file' ) ;
  31. // Check if the file has been correctly uploaded.
  32. if ( !isset( $_FILES['NewFile'] ) || is_null( $_FILES['NewFile']['tmp_name'] ) || $_FILES['NewFile']['name'] == '' )
  33. SendResults( '202' ) ;
  34. // Get the posted file.
  35. $oFile = $_FILES['NewFile'] ;
  36. // Get the uploaded file name and extension.
  37. $sFileName = $oFile['name'] ;
  38. $sOriginalFileName = $sFileName ;
  39. $sExtension = substr( $sFileName, ( strrpos($sFileName, '.') + 1 ) ) ;
  40. $sExtension = strtolower( $sExtension ) ;
  41. // The the file type (from the QueryString, by default 'File').
  42. $sType = isset( $_GET['Type'] ) ? $_GET['Type'] : 'File' ;
  43. // Get the allowed and denied extensions arrays.
  44. $arAllowed = $Config['AllowedExtensions'][$sType] ;
  45. $arDenied = $Config['DeniedExtensions'][$sType] ;
  46. // Check if it is an allowed extension.
  47. if ( ( count($arAllowed) > 0 && !in_array( $sExtension, $arAllowed ) ) || ( count($arDenied) > 0 && in_array( $sExtension, $arDenied ) ) )
  48. SendResults( '202' ) ;
  49. $sErrorNumber = '0' ;
  50. $sFileUrl = '' ;
  51. // Initializes the counter used to rename the file, if another one with the same name already exists.
  52. $iCounter = 0 ;
  53. // The the target directory.
  54. $sServerDir = GetRootPath() . $Config["UserFilesPath"] ;
  55. while ( true )
  56. {
  57. // Compose the file path.
  58. $sFilePath = $sServerDir . $sFileName ;
  59. // If a file with that name already exists.
  60. if ( is_file( $sFilePath ) )
  61. {
  62. $iCounter++ ;
  63. $sFileName = RemoveExtension( $sOriginalFileName ) . '(' . $iCounter . ').' . $sExtension ;
  64. $sErrorNumber = '201' ;
  65. }
  66. else
  67. {
  68. move_uploaded_file( $oFile['tmp_name'], $sFilePath ) ;
  69. if ( is_file( $sFilePath ) )
  70. {
  71. $oldumask = umask(0) ;
  72. chmod( $sFilePath, 0777 ) ;
  73. umask( $oldumask ) ;
  74. }
  75. $sFileUrl = $Config["UserFilesPath"] . $sFileName ;
  76. break ;
  77. }
  78. }
  79. SendResults( $sErrorNumber, $sFileUrl, $sFileName ) ;
  80. ?>