超级炫酷的 实时 Facades
打赏作者

nater

thinker 生成测试数据中文怎么实现的,我记录你有一个视频看到,但是找不到了,能告诉一下不

824286145

无语了,只有声音,没视频图像

824286145

视频只能在mac上看吗,我换到mac上看 就有图像

JellyBool 回复 824286145

稍微刷新一下,或者使用 chrome 浏览器

chenze007

挺酷 Facades 的转化 就是不知道原理是咋弄的 感觉以后可以 玩出新花样了

imagine10255

請問使用 這個轉為 靜態物件, 會一值站著記憶體嗎 ? 還是只是變方便了, 對記憶體占用如同 new 物件呢 ?

dope2008

/app/Services/ContentCloud.php

<?php

namespace app\Services;
class ContentCloud
{
    public function a()
    {
        dd(111);
    }
}

/app/Http/Controllers/IndexController.php

<?php

namespace App\Http\Controllers;

use Facades\app\Services\ContentCloud;

class IndexController extends Controller
{
    public function index()
    {
        ContentCloud::a();
    }
}

出错提示:
ReflectionException in Container.php line 719:
Class app\Services\ContentCloud does not exist

JellyBool 回复 dope2008

命名空间 app 大写试试:

App\Services\ContentCloud
高永立

记录一下

use Facades\*
wangxiaojun111

lumen 5.4支持这个吗?

lsy0920

大师,想问下这么好的功能你是怎么知道的呢?虽然英文不好,但是大概看了原版英文手册,没有发现有介绍这个功能啊。个人感觉自己在学习途径上没有太多好的方式。不知道你是怎么知道的这么多呢

JellyBool 回复 lsy0920

就是多看呗。。。没有什么捷径。

所以我就作为一个讲师将自己知道的讲出来,也挺好的,利人利己

lsy0920 回复 JellyBool

我想请教下你是通过什么途径知道的呢,很多人查阅不到这个资料的啊

Flourishing

感谢Jelly 自从来了这里 学到不少知识 感谢_