为什么我的变量在被传递一个值时被视为null?

时间:2017-04-18 19:46:51

标签: php image file null imgur

在使用$image函数定义file_get_contents()变量后,我收到了此警告:

  

警告:file_get_contents():文件名不能为空

即使我使用此方法调用将值传递给$formname

Image::uploadImage('postimg', "UPDATE dry_posts SET postimg = :postimg WHERE id = :postid", array(':postid' => $postid),array(':postimg' => $postimg));

$postimg是表单中的文件变量。我已经尝试检查文件是否存在,这解决了错误但当然没有执行任何操作。每当我使用file_get_contents()时,它似乎都不喜欢它,我该怎么转过来?

<?php
include_once("connect.php");

    class Image
    {
        public static function uploadImage($formname,$query,$params)
        {

            $formname = "";
            $response = "";
            $image = "";
            echo 'hello';
            //if(file_exists($formname))
            //{
                echo 'hello';
                $image = base64_encode(file_get_contents($_FILES[$formname]['tmp_name']));
            //}
            $options = array('http'=>array(
                'method'=>"POST",
                'header'=>"Authorization: Bearer access code here\n".
                "Content-Type: application/x-www-form-urlencoded",
                'content'=>$image
            ));

            $context = stream_context_create($options);
            $imgurURL = "https://api.imgur.com/3/image";
            if ($_FILES[$formname]['size'] > 10240000) {
                die('Image too big, must be 10MB or less!');
            }

            //if(file_exists($formname))
            //{
                echo 'hell0';
                $response = file_get_contents($imgurURL, false, $context);

            //}
            $response = json_decode($response);

            //from 
            //$prearams = array($formname=>$response->data->link);
            //$params = $preparams + $params;

            //from changes 
            //$params=array(':post‌​id'=>$postid);
            $params = array(':postid' => $params['postid'], ':postimg' => $params['postimg']);
            connect::query($query,$params);


        }

    }


?>

1 个答案:

答案 0 :(得分:0)

你在这里取消了“$ formname”? $ formname =“”;因此,如果您在方法调用中传递它并不重要,它将始终为空