ActionScheduler_WPCLI_Scheduler_command::parse_comma_separated_string()
Converts a string of comma-separated values into an array of those same values.
Метод класса: ActionScheduler_WPCLI_Scheduler_command{}
Хуков нет.
Возвращает
Массив
.
Использование
// private - только в коде основоного (родительского) класса $result = $this->parse_comma_separated_string( $string ): array;
- $string(строка) (обязательный)
- The string of one or more comma separated values.
Код ActionScheduler_WPCLI_Scheduler_command::parse_comma_separated_string() ActionScheduler WPCLI Scheduler command::parse comma separated string WC 9.4.2
private function parse_comma_separated_string( $string ): array { return array_filter( str_getcsv( $string ) ); }