APP_PATH
APP_PATH
Ceo |
AclTask | ACL management |
BaseShellCommand | |
BaseTask | BaseTask provides core functionality to tasks |
CeoBootstrap | |
CeoCli | |
CurlClass | |
daemonTask | CEO Socket Server for plugin connections |
DataManagerTask | Data manager service |
issuu | |
LicenseTask | License Task |
MessageQueueTask | Message Queue Task |
PhinxTask | Phinx Task |
PublicationTask | Publication Task |
QueueBootstrap | |
QueueTask | Queue management |
ReactTask | React Task |
SeederTask | CEO seeder |
ShellTask | Shell Task |
SocketBootstrap | |
SphinxTask | Sphinx management for the command line |
TestSupportTask | CEO test support for the command line |
UserTask | CEO User management for the command line |
WebcronCommand | |
WebcronTask | Webcron service |
array_kpluck( $arr, string $search) : mixed
Remove a value from array, searching by key, return the value and reduce the array size by one.
$arr = ['a' => 'foo', 'b' => 'bar', 'c' => 'baz'];
echo array_kpluck($arr, 'b'); // 'bar'
var_export($arr); // ['a' => 'foo', 'c' => 'baz']
$arr | ||
string | $search | key value |