PHP图像显示错误

时间:2015-07-14 11:00:31

标签: php

var log = WebContainerManager.Get<ILogManager>().GetLog(typeof(WebApiApplication));

此代码显示错误 -

图像&#34; http://localhost/untitled.php&#34;无法显示,因为它包含错误。

我实际上正在尝试使用php创建一个图像编辑器,在这里我只是尝试使用php创建一个图像并将其上传到服务器上。 我的代码显示如上所述的错误。

实际上我不明白的问题是什么。

1 个答案:

答案 0 :(得分:1)

def index
   if params[:query].present?
     @location,@city = params[:query].split(',')
     @stores = Store.search(@location,where: {city: @city},fields:   [:location,:city])
   else
     @stores = Store.all
   end
   respond_to do |format|
     format.html # index.html.erb
     format.json { render json: @stores }
   end
end