20 lines
469 B
PHP
Raw Normal View History

2025-08-01 11:39:06 +08:00
<?php
return [
[
'name' => 'mode',
'title' => '执行模式',
'type' => 'select',
'content' => [
'single' => '单进程,阻塞',
'pcntl' => '子进程无阻塞需支持pcntl不支持时自动切换为单进程',
],
'value' => 'pcntl',
'rule' => '',
'msg' => '',
'tip' => '',
'ok' => '',
'extend' => '',
],
];