草庐IT

APP_NAME

全部标签

php - 在运行时为 Lumen 的 .env 文件中定义的 APP_LOCALE 设置值

我最近开始学习Lumen微框架,我需要在运行时更改我的.env文件中定义的APP_LOCALE键的值。我的目标是在运行时切换语言以打印我的语言文件中定义的特定字符串的不同翻译。在Lumen文档中是这样写的:Tosetconfigurationvaluesatruntime,passanarraytotheconfighelper所以我在测试Controller中尝试了休闲:useIlluminate\Support\Facades\App;useLaravel\Lumen\Routing\ControllerasBaseController;classControllerextends

php - 上传的图片未在 Google Cloud Storage 上设置为公开 - Google App Engine

我遇到了一个问题。我确实遵循了Googleapp-engine-Uploadedfilesnotpublicongooglecloudstorage的两个答案,但仍然没有运气。图片在上传到存储桶时没有设置为公开这是我的代码://GoogleAPItocreateanabsoluteURLthatcanbeusedbyausertoasynchronouslyuploadalargeblobrequire_once'google/appengine/api/cloud_storage/CloudStorageTools.php';usegoogle\appengine\api\cloud

php - 类 App\Repositories\UserRepository 不存在

socialite=$socialite;$this->users=$users;$this->auth=$auth;}}这是我的Controller。当我加载这个Controller时,它显示了类似的错误"ReflectionExceptioninContainer.phpline791:ClassApp\Repositories\UserRepositorydoesnotexist".谁能给我一个解决方案? 最佳答案 可能是命名空间问题检查您的UserRepository文件类的路径。应该是:app/Repositories/U

php - 无法在类 App\bill、Laravel 中使非静态方法 Illuminate\Database\Eloquent\Model::getTable() 静态化

我在模型中创建了如下方法:classbillextendsModel{publicstaticfunctiongetTable(){$tables=Bill::where('order_type','0')->where('table_no','','')->groupBy('table_no')->get();return$tables;}}在Controller中我访问这个方法是publicfunctionbill(){$data=Bill::getTable();returnview('bill.bills');}它给出错误,因为Cannotmakenonstaticmethod

php - APP_DEBUG=true 被忽略

我在.env文件中有APP_DEBUG=true:APP_ENV=localAPP_DEBUG=trueAPP_LOG_LEVEL=debugAPP_URL=http://test.dev我故意使用不正确的不正确的url(例如:test.dev/asdsadsa),它不在web.php路由文件中。当路由不存在时,我预计会得到一个laravel调试错误Sorry,thepageyouarelookingforcouldnotbefound.NotFoundHttpExceptioninRouteCollection.phpline161:但是,它一直显示404错误页面(views/err

PHP 特征 : How to resolve a property name conflict?

当一个类使用两个具有同名属性的特征时,如何解决属性名称冲突?例子:name;我试过insteadof(Video::nameinsteadofAudio)和(Video::nameasname2)都没有成功。提前致谢! 最佳答案 你不能,它仅用于方法。但是,只有当值相同时,它们才可以使用相同的属性名称:traitVideo{public$name;functiongetName(){return'Video';}}traitAudio{public$name;functiongetName(){return'Audio';}}cla

php - ERR_NAME_NOT_RESOLVED

有什么想法吗?DocumentRoot"C:/laragon/www/monetize/public/"ServerNamemonetize.appServerAlias*.monetize.appAllowOverrideAllRequireallgrantedApache2.4.27拉拉贡完整版3.1.4window8.1我在Internet选项8.8.8.8和8.8.4.4中设置的DNS 最佳答案 您需要在您的hosts文件中添加一个条目127.0.0.1monetize.applocalhostmonetize.app

php - 尝试在 View 上访问 Auth::user()->name 时尝试获取非对象 [Laravel] 的属性

我正在尝试使用以下方法从View中获取用户名:Auth::user()->name我得到了尝试获取非对象的属性因为Auth::user()是NULL。这怎么可能?laravel生成的导航栏使用相同的方法,并且可以在那里工作。编辑:似乎我什至无法从Controller获得授权用户。Auth::guard('admin')->check();//trueAuth::user();//null有什么想法吗? 最佳答案 好吧,我又想通了,因为我使用了自定义守卫,所以我实际上需要使用:Auth::guard('admin')->user()-

php - 冒号是什么意思(:) operator after member function name in php

这个问题在这里已经有了答案:Colonaftermethoddeclaration?(2个答案)关闭4年前。我想知道方法名称后冒号的含义,即publicfunctiongetTitle():Data{interfaceData{publicfunctiondetails(string$name);}classCompany{private$title;publicfunctiongetTitle():Data{return$this->title;}publicfunctionsetTitle(Data$title){$this->title=$title}}..........

php - 无法加载 URL : The domain of this URL isn't included in the app's domains. 要能够加载此 URL... Codeigniter

我正在尝试使用codeigniterphp登录facebook应用程序。我收到错误:WarningCan'tLoadURL:ThedomainofthisURLisn'tincludedintheapp'sdomains.TobeabletoloadthisURL,addalldomainsandsubdomainsofyourapptotheAppDomainsfieldinyourappsettings.我做了一些研究,我认为我在Facebook应用程序中的有效OAuth重定向URI是错误的/无效的。有人可以指导我如何解决这个问题吗?这是我的链接图片 最