I need to compare the length of variables, for example,
if ( strlen($query_string) < 16 ) {
return 301;
}
I could find nginx documentation on string and other comparison but could not find about the length of the content. Any help will be appreciated.