提示
簡介
Laravel Prompts 是一個用於為您的命令列應用程式添加美觀且用戶友好的表單的 PHP 套件,具有類似瀏覽器的功能,包括佔位文字和驗證。

Laravel Prompts 非常適合在您的 Artisan 控制台命令 中接受用戶輸入,但也可用於任何命令列 PHP 專案。
[!NOTE]
Laravel Prompts 支援 macOS、Linux 和具有 WSL 的 Windows。有關更多信息,請參閱我們的 不支援的環境和備用方案 文件。
安裝
Laravel Prompts 已包含在最新版本的 Laravel 中。
您也可以使用 Composer 套件管理器在其他 PHP 專案中安裝 Laravel Prompts:
composer require laravel/prompts
可用提示
文字
text
函數將提示用戶提供給定問題的答案,接受他們的輸入,然後返回它:
use function Laravel\Prompts\text;
$name = text('你叫什麼名字?');
您還可以包含佔位文字、預設值和信息提示:
$name = text(
label: 'What is your name?',
placeholder: 'E.g. Taylor Otwell',
default: $user?->name,
hint: 'This will be displayed on your profile.'
);
必填值
如果您需要輸入一個值,您可以傳遞 required
引數:
$name = text(
label: 'What is your name?',
required: true
);
如果您想自定義驗證訊息,您也可以傳遞一個字串:
$name = text(
label: 'What is your name?',
required: 'Your name is required.'
);
額外驗證
最後,如果您想執行額外的驗證邏輯,您可以將閉包傳遞給 validate
引數:
$name = text(
label: 'What is your name?',
validate: fn (string $value) => match (true) {
strlen($value) < 3 => 'The name must be at least 3 characters.',
strlen($value) > 255 => 'The name must not exceed 255 characters.',
default => null
}
);
閉包將接收到已輸入的值,並可能返回一個錯誤訊息,或者如果驗證通過則返回 null
。
或者,您可以利用 Laravel 的 validator 的功能。為此,請提供一個包含屬性名稱和所需驗證規則的陣列給 validate
引數:
$name = text(
label: 'What is your name?',
validate: ['name' => 'required|max:255|unique:users']
);
文本區
textarea
函式將提示用戶提供指定問題的答案,通過多行文本區域接受他們的輸入,然後返回它:
use function Laravel\Prompts\textarea;
$story = textarea('告訴我一個故事。');
您也可以包含佔位文字、預設值和信息提示:
$story = textarea(
label: 'Tell me a story.',
placeholder: 'This is a story about...',
hint: 'This will be displayed on your profile.'
);
必填值
如果您需要輸入一個值,您可以傳遞 required
引數:
$story = textarea(
label: 'Tell me a story.',
required: true
);
如果您想自定義驗證訊息,您也可以傳遞一個字串:
$story = textarea(
label: 'Tell me a story.',
required: 'A story is required.'
);
額外驗證
最後,如果您想執行額外的驗證邏輯,您可以將閉包傳遞給 validate
引數:
$story = textarea(
label: 'Tell me a story.',
validate: fn (string $value) => match (true) {
strlen($value) < 250 => 'The story must be at least 250 characters.',
strlen($value) > 10000 => 'The story must not exceed 10,000 characters.',
default => null
}
);
閉包將接收到已輸入的值,並可能返回一個錯誤訊息,或者如果驗證通過則返回 null
。
或者,您可以利用 Laravel 的 validator 的功能。為此,請提供一個包含屬性名稱和所需驗證規則的陣列給 validate
引數:
$story = textarea(
label: 'Tell me a story.',
validate: ['story' => 'required|max:10000']
);
密碼
password
函式類似於 text
函式,但是使用者在控制台輸入時,其輸入將被遮蔽。當需要輸入敏感信息如密碼時,這很有用:
use function Laravel\Prompts\password;
$password = password('請輸入您的密碼?');
您也可以包含佔位文字和信息提示:
$password = password(
label: 'What is your password?',
placeholder: 'password',
hint: 'Minimum 8 characters.'
);
必填值
如果您需要要求輸入值,您可以傳遞 required
引數:
$password = password(
label: 'What is your password?',
required: true
);
如果您想自定義驗證消息,您也可以傳遞一個字符串:
$password = password(
label: 'What is your password?',
required: 'The password is required.'
);
額外驗證
最後,如果您想執行額外的驗證邏輯,您可以將閉包傳遞給 validate
引數:
$password = password(
label: 'What is your password?',
validate: fn (string $value) => match (true) {
strlen($value) < 8 => 'The password must be at least 8 characters.',
default => null
}
);
閉包將接收到已輸入的值,並可能返回錯誤消息,或者如果驗證通過則返回 null
。
或者,您可以利用 Laravel 的 validator 的功能。為此,將包含屬性名稱和所需驗證規則的陣列提供給 validate
引數:
$password = password(
label: 'What is your password?',
validate: ['password' => 'min:8']
);
確認
如果您需要向使用者請求“是”或“否”的確認,您可以使用 confirm
函式。使用者可以使用箭頭鍵或按 y
或 n
來選擇他們的回應。此函式將返回 true
或 false
。
use function Laravel\Prompts\confirm;
$confirmed = confirm('您是否接受條款?');
您也可以包含默認值,自定義“是”和“否”標籤的措辭,以及信息提示:
$confirmed = confirm(
label: 'Do you accept the terms?',
default: false,
yes: 'I accept',
no: 'I decline',
hint: 'The terms must be accepted to continue.'
);
要求“是”
如果需要,您可以通過傳遞 required
引數來要求您的使用者選擇“是”:
$confirmed = confirm(
label: 'Do you accept the terms?',
required: true
);
如果您想自訂確認訊息,您也可以傳遞一個字串:
$confirmed = confirm(
label: 'Do you accept the terms?',
required: 'You must accept the terms to continue.'
);
選擇
如果您需要讓使用者從預定義的選項中進行選擇,您可以使用 select
函數:
use function Laravel\Prompts\select;
$role = select(
label: 'What role should the user have?',
options: ['Member', 'Contributor', 'Owner']
);
您也可以指定預設選項和提示資訊:
$role = select(
label: 'What role should the user have?',
options: ['Member', 'Contributor', 'Owner'],
default: 'Owner',
hint: 'The role may be changed at any time.'
);
您也可以將關聯陣列傳遞給 options
參數,以便返回所選鍵而不是其值:
$role = select(
label: 'What role should the user have?',
options: [
'member' => 'Member',
'contributor' => 'Contributor',
'owner' => 'Owner',
],
default: 'owner'
);
在列表開始滾動之前,最多顯示五個選項。您可以通過傳遞 scroll
參數來自訂此功能:
$role = select(
label: 'Which category would you like to assign?',
options: Category::pluck('name', 'id'),
scroll: 10
);
額外驗證
與其他提示函數不同,select
函數不接受 required
參數,因為無法選擇空值。但是,如果您需要呈現一個選項但防止其被選擇,則可以將閉包傳遞給 validate
參數:
$role = select(
label: 'What role should the user have?',
options: [
'member' => 'Member',
'contributor' => 'Contributor',
'owner' => 'Owner',
],
validate: fn (string $value) =>
$value === 'owner' && User::where('role', 'owner')->exists()
? 'An owner already exists.'
: null
);
如果 options
參數是一個關聯陣列,則閉包將接收所選鍵,否則將接收所選值。閉包可以返回錯誤訊息,或者如果驗證通過則返回 null
。
多選
如果您需要讓使用者能夠選擇多個選項,您可以使用 multiselect
函數:
use function Laravel\Prompts\multiselect;
$permissions = multiselect(
label: 'What permissions should be assigned?',
options: ['Read', 'Create', 'Update', 'Delete']
);
您也可以指定預設選項和提示資訊:
use function Laravel\Prompts\multiselect;
$permissions = multiselect(
label: 'What permissions should be assigned?',
options: ['Read', 'Create', 'Update', 'Delete'],
default: ['Read', 'Create'],
hint: 'Permissions may be updated at any time.'
);
您也可以將關聯陣列傳遞給 options
參數,以返回所選選項的鍵而不是其值:
$permissions = multiselect(
label: 'What permissions should be assigned?',
options: [
'read' => 'Read',
'create' => 'Create',
'update' => 'Update',
'delete' => 'Delete',
],
default: ['read', 'create']
);
在列表開始滾動之前,最多顯示五個選項。您可以通過傳遞 scroll
參數來自訂此功能:
$categories = multiselect(
label: 'What categories should be assigned?',
options: Category::pluck('name', 'id'),
scroll: 10
);
要求值
預設情況下,使用者可以選擇零個或多個選項。您可以傳遞 required
參數來強制選擇一個或多個選項:
$categories = multiselect(
label: 'What categories should be assigned?',
options: Category::pluck('name', 'id'),
required: true
);
如果您想自訂驗證訊息,可以提供一個字串給 required
引數:
$categories = multiselect(
label: 'What categories should be assigned?',
options: Category::pluck('name', 'id'),
required: 'You must select at least one category'
);
額外驗證
如果您需要呈現一個選項但希望防止它被選取,可以將閉包傳遞給 validate
引數:
$permissions = multiselect(
label: 'What permissions should the user have?',
options: [
'read' => 'Read',
'create' => 'Create',
'update' => 'Update',
'delete' => 'Delete',
],
validate: fn (array $values) => ! in_array('read', $values)
? 'All users require the read permission.'
: null
);
如果 options
引數是一個關聯陣列,則閉包將接收選取的鍵,否則將接收選取的值。閉包可以返回一個錯誤訊息,或者如果驗證通過則返回 null
。
建議
suggest
函式可用於提供可能選項的自動完成。使用者仍然可以提供任何答案,而不受自動完成提示的限制:
use function Laravel\Prompts\suggest;
$name = suggest('您的名字是?', ['Taylor', 'Dayle']);
或者,您可以將閉包作為 suggest
函式的第二個引數。每次使用者輸入一個字元時,將調用閉包。閉包應該接受包含使用者迄今輸入的字串參數,並返回一個用於自動完成的選項陣列:
$name = suggest(
label: 'What is your name?',
options: fn ($value) => collect(['Taylor', 'Dayle'])
->filter(fn ($name) => Str::contains($name, $value, ignoreCase: true))
)
您還可以包含佔位文字、預設值和信息提示:
$name = suggest(
label: 'What is your name?',
options: ['Taylor', 'Dayle'],
placeholder: 'E.g. Taylor',
default: $user?->name,
hint: 'This will be displayed on your profile.'
);
必填值
如果您需要輸入一個值,可以傳遞 required
引數:
$name = suggest(
label: 'What is your name?',
options: ['Taylor', 'Dayle'],
required: true
);
如果您想自訂驗證訊息,也可以傳遞一個字串:
$name = suggest(
label: 'What is your name?',
options: ['Taylor', 'Dayle'],
required: 'Your name is required.'
);
額外驗證
最後,如果您想執行額外的驗證邏輯,可以將閉包傳遞給 validate
引數:
$name = suggest(
label: 'What is your name?',
options: ['Taylor', 'Dayle'],
validate: fn (string $value) => match (true) {
strlen($value) < 3 => 'The name must be at least 3 characters.',
strlen($value) > 255 => 'The name must not exceed 255 characters.',
default => null
}
);
閉包將接收已輸入的值,並可以返回一個錯誤訊息,或者如果驗證通過則返回 null
。
或者,您可以利用 Laravel 的 validator 的功能。為此,將包含屬性名稱和所需驗證規則的陣列提供給 validate
引數:
$name = suggest(
label: 'What is your name?',
options: ['Taylor', 'Dayle'],
validate: ['name' => 'required|min:3|max:255']
);
搜尋
如果您有許多選項供使用者選擇,search
函數允許使用者輸入搜尋查詢以在使用箭頭鍵選擇選項之前篩選結果:
use function Laravel\Prompts\search;
$id = search(
label: 'Search for the user that should receive the mail',
options: fn (string $value) => strlen($value) > 0
? User::whereLike('name', "%{$value}%")->pluck('name', 'id')->all()
: []
);
閉包將接收到使用者迄今輸入的文字,並必須返回一個選項陣列。如果您返回一個關聯陣列,則將返回所選選項的鍵,否則將返回其值。
在篩選您打算返回值的陣列時,應使用 array_values
函數或 values
集合方法來確保陣列不會變成關聯陣列:
$names = collect(['Taylor', 'Abigail']);
$selected = search(
label: 'Search for the user that should receive the mail',
options: fn (string $value) => $names
->filter(fn ($name) => Str::contains($name, $value, ignoreCase: true))
->values()
->all(),
);
您也可以包含佔位文字和信息提示:
$id = search(
label: 'Search for the user that should receive the mail',
placeholder: 'E.g. Taylor Otwell',
options: fn (string $value) => strlen($value) > 0
? User::whereLike('name', "%{$value}%")->pluck('name', 'id')->all()
: [],
hint: 'The user will receive an email immediately.'
);
在列表開始滾動之前將顯示最多五個選項。您可以通過傳遞 scroll
參數來自定義此行為:
$id = search(
label: 'Search for the user that should receive the mail',
options: fn (string $value) => strlen($value) > 0
? User::whereLike('name', "%{$value}%")->pluck('name', 'id')->all()
: [],
scroll: 10
);
額外驗證
如果您想執行額外的驗證邏輯,可以將閉包傳遞給 validate
參數:
$id = search(
label: 'Search for the user that should receive the mail',
options: fn (string $value) => strlen($value) > 0
? User::whereLike('name', "%{$value}%")->pluck('name', 'id')->all()
: [],
validate: function (int|string $value) {
$user = User::findOrFail($value);
if ($user->opted_out) {
return 'This user has opted-out of receiving mail.';
}
}
);
如果 options
閉包返回一個關聯陣列,則閉包將接收所選鍵,否則將接收所選值。閉包可以返回錯誤訊息,或者如果驗證通過則返回 null
。
多重搜尋
如果您有許多可搜尋的選項並且需要使用者能夠選擇多個項目,multisearch
函數允許使用者輸入搜尋查詢以在使用箭頭鍵和空格鍵選擇選項之前篩選結果:
use function Laravel\Prompts\multisearch;
$ids = multisearch(
'Search for the users that should receive the mail',
fn (string $value) => strlen($value) > 0
? User::whereLike('name', "%{$value}%")->pluck('name', 'id')->all()
: []
);
當篩選一個陣列並打算返回值時,應該使用 array_values
函式或 values
集合方法來確保陣列不會變成關聯式:
$names = collect(['Taylor', 'Abigail']);
$selected = multisearch(
label: 'Search for the users that should receive the mail',
options: fn (string $value) => $names
->filter(fn ($name) => Str::contains($name, $value, ignoreCase: true))
->values()
->all(),
);
您也可以包含佔位文字和一個信息提示:
$ids = multisearch(
label: 'Search for the users that should receive the mail',
placeholder: 'E.g. Taylor Otwell',
options: fn (string $value) => strlen($value) > 0
? User::whereLike('name', "%{$value}%")->pluck('name', 'id')->all()
: [],
hint: 'The user will receive an email immediately.'
);
在列表開始滾動之前,最多會顯示五個選項。您可以通過提供 scroll
參數來自定義此行為:
$ids = multisearch(
label: 'Search for the users that should receive the mail',
options: fn (string $value) => strlen($value) > 0
? User::whereLike('name', "%{$value}%")->pluck('name', 'id')->all()
: [],
scroll: 10
);
需要值
默認情況下,用戶可以選擇零個或多個選項。您可以傳遞 required
參數來強制選擇一個或多個選項:
$ids = multisearch(
label: 'Search for the users that should receive the mail',
options: fn (string $value) => strlen($value) > 0
? User::whereLike('name', "%{$value}%")->pluck('name', 'id')->all()
: [],
required: true
);
如果您想自定義驗證消息,也可以向 required
參數提供一個字符串:
$ids = multisearch(
label: 'Search for the users that should receive the mail',
options: fn (string $value) => strlen($value) > 0
? User::whereLike('name', "%{$value}%")->pluck('name', 'id')->all()
: [],
required: 'You must select at least one user.'
);
額外驗證
如果您想執行額外的驗證邏輯,可以將閉包傳遞給 validate
參數:
$ids = multisearch(
label: 'Search for the users that should receive the mail',
options: fn (string $value) => strlen($value) > 0
? User::whereLike('name', "%{$value}%")->pluck('name', 'id')->all()
: [],
validate: function (array $values) {
$optedOut = User::whereLike('name', '%a%')->findMany($values);
if ($optedOut->isNotEmpty()) {
return $optedOut->pluck('name')->join(', ', ', and ').' have opted out.';
}
}
);
如果 options
閉包返回一個關聯式陣列,則閉包將接收選定的鍵;否則,它將接收選定的值。閉包可以返回錯誤消息,或者如果驗證通過則返回 null
。
暫停
pause
函式可用於向用戶顯示信息文本,並等待用戶按 Enter 鍵確認他們希望繼續進行:
use function Laravel\Prompts\pause;
pause('按 ENTER 鍵繼續。');
驗證之前轉換輸入
有時您可能希望在進行驗證之前轉換提示輸入。例如,您可能希望從提供的字符串中刪除空格。為此,許多提示函式提供了一個 transform
參數,該參數接受一個閉包:
$name = text(
label: 'What is your name?',
transform: fn (string $value) => trim($value),
validate: fn (string $value) => match (true) {
strlen($value) < 3 => 'The name must be at least 3 characters.',
strlen($value) > 255 => 'The name must not exceed 255 characters.',
default => null
}
);
表單
通常,您將有多個提示將按順序顯示,以在執行其他操作之前收集信息。您可以使用 form
函式來為用戶創建一組分組的提示,以便完成:
use function Laravel\Prompts\form;
$responses = form()
->text('What is your name?', required: true)
->password('What is your password?', validate: ['password' => 'min:8'])
->confirm('Do you accept the terms?')
->submit();
submit
方法將返回一個數值索引陣列,其中包含表單提示的所有回應。但是,您可以通過 name
引數為每個提示提供一個名稱。當提供名稱時,可以通過該名稱訪問命名提示的回應:
use App\Models\User;
use function Laravel\Prompts\form;
$responses = form()
->text('What is your name?', required: true, name: 'name')
->password(
label: 'What is your password?',
validate: ['password' => 'min:8'],
name: 'password'
)
->confirm('Do you accept the terms?')
->submit();
User::create([
'name' => $responses['name'],
'password' => $responses['password'],
]);
使用 form
函數的主要好處是用戶可以使用 CTRL + U
返回表單中的先前提示。這使用戶可以在無需取消並重新啟動整個表單的情況下更正錯誤或更改選擇。
如果您需要對表單中的提示進行更細粒度的控制,可以調用 add
方法而不是直接調用其中一個提示函數。add
方法將接收用戶提供的所有先前回應:
use function Laravel\Prompts\form;
use function Laravel\Prompts\outro;
$responses = form()
->text('What is your name?', required: true, name: 'name')
->add(function ($responses) {
return text("How old are you, {$responses['name']}?");
}, name: 'age')
->submit();
outro("Your name is {$responses['name']} and you are {$responses['age']} years old.");
資訊訊息
note
、info
、warning
、error
和 alert
函數可用於顯示資訊訊息:
use function Laravel\Prompts\info;
info('套件安裝成功。');
表格
table
函數使得顯示多行和多列數據變得容易。您只需要提供表格的列名和數據即可:
use function Laravel\Prompts\table;
table(
headers: ['Name', 'Email'],
rows: User::all(['name', 'email'])->toArray()
);
旋轉
spin
函數在執行指定回調時顯示一個旋轉器以及一個可選消息。它用於指示正在進行的過程,並在完成時返回回調的結果:
use function Laravel\Prompts\spin;
$response = spin(
message: 'Fetching response...',
callback: fn () => Http::get('http://example.com')
);
[!WARNING]
spin
函數需要pcntl
PHP 擴展來播放旋轉器。當此擴展不可用時,將顯示旋轉器的靜態版本。
進度條
對於運行時間較長的任務,顯示進度條可以幫助用戶了解任務的完成情況。使用 progress
函數,Laravel 將顯示一個進度條,並對給定可迭代值的每次迭代進行進度提升:
use function Laravel\Prompts\progress;
$users = progress(
label: 'Updating users',
steps: User::all(),
callback: fn ($user) => $this->performTask($user)
);
progress
函式的作用類似於映射函式,將返回包含每次回呼迭代的返回值的陣列。
回呼函式也可以接受 Laravel\Prompts\Progress
實例,讓您可以在每次迭代時修改標籤和提示:
$users = progress(
label: 'Updating users',
steps: User::all(),
callback: function ($user, $progress) {
$progress
->label("Updating {$user->name}")
->hint("Created on {$user->created_at}");
return $this->performTask($user);
},
hint: 'This may take some time.'
);
有時,您可能需要對進度條的前進方式進行更多手動控制。首先,定義處理過程將迭代的總步驟數。然後,在處理每個項目後通過 advance
方法前進進度條:
$progress = progress(label: 'Updating users', steps: 10);
$users = User::all();
$progress->start();
foreach ($users as $user) {
$this->performTask($user);
$progress->advance();
}
$progress->finish();
清除終端
clear
函式可用於清除用戶的終端:
use function Laravel\Prompts\clear;
clear();
終端考量事項
終端寬度
如果任何標籤、選項或驗證訊息的長度超過用戶終端中的 "列" 數,將自動截斷以適應。如果您的用戶可能使用較窄的終端,請考慮最小化這些字串的長度。通常安全的最大長度是 74 個字元,以支援 80 個字元寬的終端。
終端高度
對於接受 scroll
引數的任何提示,配置的值將自動縮減以適應用戶終端的高度,包括用於驗證訊息的空間。
不支援的環境和回退
Laravel Prompts 支援 macOS、Linux 和具有 WSL 的 Windows。由於 Windows 版本的 PHP 限制,目前無法在 Windows 上的 WSL 之外使用 Laravel Prompts。
因此,Laravel Prompts 支援回退到替代實現,例如 Symfony Console Question Helper。
[!NOTE]
當在 Laravel 框架中使用 Laravel Prompts 時,已為每個提示配置了回退,並將在不支援的環境中自動啟用。
回退條件
如果您未使用 Laravel 或需要自訂回退行為的使用情況,您可以將布林值傳遞給 Prompt
類別上的 fallbackWhen
靜態方法:
use Laravel\Prompts\Prompt;
Prompt::fallbackWhen(
! $input->isInteractive() || windows_os() || app()->runningUnitTests()
);
回退行為
如果您未使用 Laravel 或需要自訂回退行為,您可以將閉包傳遞給每個提示類別上的 fallbackUsing
靜態方法:
use Laravel\Prompts\TextPrompt;
use Symfony\Component\Console\Question\Question;
use Symfony\Component\Console\Style\SymfonyStyle;
TextPrompt::fallbackUsing(function (TextPrompt $prompt) use ($input, $output) {
$question = (new Question($prompt->label, $prompt->default ?: null))
->setValidator(function ($answer) use ($prompt) {
if ($prompt->required && $answer === null) {
throw new \RuntimeException(
is_string($prompt->required) ? $prompt->required : 'Required.'
);
}
if ($prompt->validate) {
$error = ($prompt->validate)($answer ?? '');
if ($error) {
throw new \RuntimeException($error);
}
}
return $answer;
});
return (new SymfonyStyle($input, $output))
->askQuestion($question);
});
必須為每個提示類別單獨配置回退。閉包將接收提示類別的實例,並且必須返回適當的類型以供提示使用。