App下載

詞條

大約有 7,000 項符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,250 項。(搜索耗時:0.0051秒)

3511.Laravel 8 擴展 Blade

...ime($var) 指令,其用于格式化指定的 DateTime 實例 $var:<?php namespace App\Providers; use Illuminate\Support\Facades\Blade; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * 注冊應(yīng)用服務(wù)。 * * @return void */ public function reg...

http://www.o2fo.com/laravel_8/laravel_8-18su3gz1.html

3512.Laravel 8 使用短鍵

...持的語言都應(yīng)該對應(yīng)一個子目錄:/resources /lang /en messages.php /es messages.php 所有的語言文件都應(yīng)返回一個鍵值對數(shù)組。例如:<?php // resources/lang/en/messages.php return [ 'welcome' => 'Welcome to our application', ];

http://www.o2fo.com/laravel_8/laravel_8-sve13gz8.html

3513.Laravel 8 Pusher

...事件進行廣播,請用 Composer 包管理器來安裝 Pusher Channels PHP SDK :composer require pusher/pusher-php-server "~4.0" 然后,你需要在 config/broadcasting.php 配置文件中配置你的 Pusher 證書。該文件中已經(jīng)包含了一個 Pusher 示例配置,你可以快速地...

http://www.o2fo.com/laravel_8/laravel_8-wlqr3h93.html

3514.Laravel 8 定義頻道類

...你的應(yīng)用程序使用了很多不同的頻道, 那么 routes/channels.php 文件將會變得很臃腫。 所以,你可以使用頻道類,而不是使用閉包來授權(quán)頻道。要生成頻道類,使用 make:channel Artisan 命令。 此命令將在 App/Broadcasting 目錄,生成一個...

http://www.o2fo.com/laravel_8/laravel_8-7cx53h9o.html

3515.Laravel 8 注冊驅(qū)動

...創(chuàng)建服務(wù)提供者來存放擴展,只是不要忘記在 config/app.php 的 provider 的數(shù)組中注冊服務(wù)提供者:<?php namespace App\Providers; use App\Extensions\MongoStore; use Illuminate\Support\Facades\Cache; use Illuminate\Support\ServiceProvider; class CacheServiceProvider exte...

http://www.o2fo.com/laravel_8/laravel_8-ns7x3hbf.html

3516.Laravel 8 SES 驅(qū)動

要使用 Amazon SES 驅(qū)動,你必須先安裝 PHP 的 Amazon AWS SDK 。你可以在 composer.json 文件的 require 段落加入下面這一行并運行 composer update 命令:"aws/aws-sdk-php": "~3.0" 然后,將 config/mail.php 配置文件的 default 選項設(shè)置成 ses 并確認你的 co...

http://www.o2fo.com/laravel_8/laravel_8-fan13hpu.html

3517.Laravel 8 創(chuàng)建并運行測試

...個新的測試用例:// 在 Feature 目錄下創(chuàng)建一個測試類... php artisan make:test UserTest // 在 Unit 目錄下創(chuàng)建一個測試類... php artisan make:test UserTest --unit 技巧:可以使用 stub publishing 自定義測試 stub 測試類一旦生成,你就可以像使用 PHPUni...

http://www.o2fo.com/laravel_8/laravel_8-983b3i9l.html

3518.Laravel 8 Codeship

...一個入門示例,如果需要的話你可以添加更多額外命令:phpenv local 7.2 cp .env.testing .env mkdir -p ./bootstrap/cache composer install --no-interaction --prefer-dist php artisan key:generate php artisan dusk:chrome-driver nohup bash -c "php artisan serve 2>&1 &" && sleep 5 p...

http://www.o2fo.com/laravel_8/laravel_8-pu783if8.html

3519.PHPUnit9.0 標注-標注是什么

...語言中允許加在源代碼中的一種特殊格式的語法元數(shù)據(jù)。PHP 并沒有專門的語言特性來支持對源代碼進行標注,然而 PHP 社區(qū)早已經(jīng)形成慣例,通過在文檔注釋塊中使用諸如 ?@annotation arguments? 這樣的標簽來為源代碼加上標注。...

http://www.o2fo.com/phpunit9/phpunit9-hunt3mgv.html

3520.PHPUnit9.0 標注-@requires

PHPUnit9.0 標注集合 ?@requires? 標注用于在常規(guī)前提條件(例如 PHP 版本或所安裝的擴展)不滿足時跳過測試。<?php declare(strict_types=1); use PHPUnit\Framework\TestCase; /** * @requires extension mysqli */ final class DatabaseTest extends TestCase { /** * @re...

http://www.o2fo.com/phpunit9/phpunit9-syze3mhf.html

抱歉,暫時沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

3511.Laravel 8 擴展 Blade

...ime($var) 指令,其用于格式化指定的 DateTime 實例 $var:<?php namespace App\Providers; use Illuminate\Support\Facades\Blade; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * 注冊應(yīng)用服務(wù)。 * * @return void */ public function reg...

http://www.o2fo.com/laravel_8/laravel_8-18su3gz1.html

3512.Laravel 8 使用短鍵

...持的語言都應(yīng)該對應(yīng)一個子目錄:/resources /lang /en messages.php /es messages.php 所有的語言文件都應(yīng)返回一個鍵值對數(shù)組。例如:<?php // resources/lang/en/messages.php return [ 'welcome' => 'Welcome to our application', ];

http://www.o2fo.com/laravel_8/laravel_8-sve13gz8.html

3513.Laravel 8 Pusher

...事件進行廣播,請用 Composer 包管理器來安裝 Pusher Channels PHP SDK :composer require pusher/pusher-php-server "~4.0" 然后,你需要在 config/broadcasting.php 配置文件中配置你的 Pusher 證書。該文件中已經(jīng)包含了一個 Pusher 示例配置,你可以快速地...

http://www.o2fo.com/laravel_8/laravel_8-wlqr3h93.html

3514.Laravel 8 定義頻道類

...你的應(yīng)用程序使用了很多不同的頻道, 那么 routes/channels.php 文件將會變得很臃腫。 所以,你可以使用頻道類,而不是使用閉包來授權(quán)頻道。要生成頻道類,使用 make:channel Artisan 命令。 此命令將在 App/Broadcasting 目錄,生成一個...

http://www.o2fo.com/laravel_8/laravel_8-7cx53h9o.html

3515.Laravel 8 注冊驅(qū)動

...創(chuàng)建服務(wù)提供者來存放擴展,只是不要忘記在 config/app.php 的 provider 的數(shù)組中注冊服務(wù)提供者:<?php namespace App\Providers; use App\Extensions\MongoStore; use Illuminate\Support\Facades\Cache; use Illuminate\Support\ServiceProvider; class CacheServiceProvider exte...

http://www.o2fo.com/laravel_8/laravel_8-ns7x3hbf.html

3516.Laravel 8 SES 驅(qū)動

要使用 Amazon SES 驅(qū)動,你必須先安裝 PHP 的 Amazon AWS SDK 。你可以在 composer.json 文件的 require 段落加入下面這一行并運行 composer update 命令:"aws/aws-sdk-php": "~3.0" 然后,將 config/mail.php 配置文件的 default 選項設(shè)置成 ses 并確認你的 co...

http://www.o2fo.com/laravel_8/laravel_8-fan13hpu.html

3517.Laravel 8 創(chuàng)建并運行測試

...個新的測試用例:// 在 Feature 目錄下創(chuàng)建一個測試類... php artisan make:test UserTest // 在 Unit 目錄下創(chuàng)建一個測試類... php artisan make:test UserTest --unit 技巧:可以使用 stub publishing 自定義測試 stub 測試類一旦生成,你就可以像使用 PHPUni...

http://www.o2fo.com/laravel_8/laravel_8-983b3i9l.html

3518.Laravel 8 Codeship

...一個入門示例,如果需要的話你可以添加更多額外命令:phpenv local 7.2 cp .env.testing .env mkdir -p ./bootstrap/cache composer install --no-interaction --prefer-dist php artisan key:generate php artisan dusk:chrome-driver nohup bash -c "php artisan serve 2>&1 &" && sleep 5 p...

http://www.o2fo.com/laravel_8/laravel_8-pu783if8.html

3519.PHPUnit9.0 標注-標注是什么

...語言中允許加在源代碼中的一種特殊格式的語法元數(shù)據(jù)。PHP 并沒有專門的語言特性來支持對源代碼進行標注,然而 PHP 社區(qū)早已經(jīng)形成慣例,通過在文檔注釋塊中使用諸如 ?@annotation arguments? 這樣的標簽來為源代碼加上標注。...

http://www.o2fo.com/phpunit9/phpunit9-hunt3mgv.html

3520.PHPUnit9.0 標注-@requires

PHPUnit9.0 標注集合 ?@requires? 標注用于在常規(guī)前提條件(例如 PHP 版本或所安裝的擴展)不滿足時跳過測試。<?php declare(strict_types=1); use PHPUnit\Framework\TestCase; /** * @requires extension mysqli */ final class DatabaseTest extends TestCase { /** * @re...

http://www.o2fo.com/phpunit9/phpunit9-syze3mhf.html

抱歉,暫時沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程