编程语言
首页 > 编程语言> > php-Laravel:如何包含一个库?

php-Laravel:如何包含一个库?

作者:互联网

我要使用以下内容:
库文件夹中的Holmes:

http://paste.laravel.com/Em

    // Determine if request is from a mobile device
Holmes::is_mobile(); // returns boolean

// Determine the type of device
$device = Holmes::get_device(); // returns string

// Determine if a specific device is being used
// Any supported device below is acceptable
// lowercased no spaces, obviously. <3
Holmes::is_ipad();
Holmes::is_blackberrytablet();

我在哪里放置什么?

在路线上:

视图:

@if(Holmes::is_iphone())
{{ 'this is an iphone' }}
@endif

我也得到这个错误:
Holmes库文件中的第25行应仅通过引用传递变量

我正在尝试从程序混乱中过渡;)

解决方法:

Chris Fidao(Fideloper)撰写了一篇很棒的文章,其中包含有关如何在Laravel 4中加载库的说明:
http://fideloper.com/laravel-4-application-setup-app-library-autoloading

标签:laravel,user-agent,cross-browser,php
来源: https://codeday.me/bug/20191123/2066007.html