Skip to content

Kirby 3.5.7.1

minWords

Checks if the number of words in the value equals or is below the given maximum

V::minWords(string $value, $min): bool

Parameters

Name Type Default
$value * string
$min * mixed

Return type

bool

In your code

if(V::minWords('Lorem ipsum dolor sit amet.', 5)) {
  echo 'Yay, valid!';
}

In fields

fields:
  example:
    label: Example field
    type: text
    validate:
      minWords: 5