php中的图片上传问题

时间:2013-02-20 04:49:16

标签: php joomla image-upload

我上传的图片名称为#included,但图片无法显示。

示例,如果我创建了一个文件名5677PlayadelRey,#4_LR.jpg Joomla的文件系统无法加载它,但是如果我命名5677PlayadelRey,Unit4_LR. jpg它就可以正常工作。

感谢您提前。

6 个答案:

答案 0 :(得分:1)

这是因为#字符指定页面上的哈希/ ID。在网址内使用是非法的角色。

逗号,也不应该在网址

答案 1 :(得分:1)

您可以使用urlencode确保您的文件名对于网址是安全的。

http://php.net/manual/en/function.urlencode.php

只有在需要使用URL中的文件名时才能使用此选项。您可以保留您想要的文件名。

答案 2 :(得分:0)

#未在网址中传递,因此请使用“{1}}

替换”

答案 3 :(得分:0)

尝试使用

<?php
    // define a constant for the maximum upload size
    define ('MAX_FILE_SIZE', 1024 * 50);

    if (array_key_exists('upload', $_POST)) {
      // define constant for upload folder
      define('UPLOAD_DIR', '/path/to/images/');
      // replace any spaces in original filename with underscores
      $file = str_replace('#', '_', $_FILES['image']['name']);
      // create an array of permitted MIME types
      $permitted = array('image/gif', 'image/jpeg', 'image/pjpeg',
    'image/png');

      // upload if file is OK
      if (in_array($_FILES['image']['type'], $permitted)
          && $_FILES['image']['size'] > 0 
          && $_FILES['image']['size'] <= MAX_FILE_SIZE) {
        switch($_FILES['image']['error']) {
          case 0:
            // check if a file of the same name has been uploaded
            if (!file_exists(UPLOAD_DIR . $file)) {
              // move the file to the upload folder and rename it
              $success =
    move_uploaded_file($_FILES['image']['tmp_name'], UPLOAD_DIR .
    $file);
            } else {
              $result = 'A file of the same name already exists.';
            }
            if ($success) {
              $result = "$file uploaded successfully.";
            } else {
              $result = "Error uploading $file. Please try again.";
            }
            break;
          case 3:
          case 6:
          case 7:
          case 8:
            $result = "Error uploading $file. Please try again.";
            break;
          case 4:
            $result = "You didn't select a file to be uploaded.";
        }
      } else {
        $result = "$file is either too big or not an image.";
      }
    }
    ?>

答案 4 :(得分:0)

如果您使用的是Joomla,则要求所有文件名都是字母数字+下划线。您安装的许多插件可能都基于此假设。否则事情可能会破裂。

答案 5 :(得分:0)

在处理图像的方法中:

jimport('joomla.filesystem.file');
$input = JFactory::getApplication()->input;

然后,使用

$your_photo_name = JFile::makeSafe($input->get('your_photo_name');

这将使Joomla使用文件名安全!系统