Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php $options = ['options' => ['min_range' => 2, 'max_range' => 30]]; $str = "Всем привет"; echo implode(", ", $options['options']); if (filter_var(mb_strlen($str), FILTER_VALIDATE_INT, $options)) { // echo "string length in range [", implode(options['options'], ", "), "]"; } else { echo "string length out of range"; } //string length in range [2, 30]
Copy Clear