Solución del problema
mb_strlen()
y strtoupper()
son tus amigos.
$this->title = $search['make'].' '.$search['model'];
if (mb_strlen($search['make']) <= 3 || mb_strlen($search['model']) <= 3) {
$this->title = strtoupper($this->title);
}
mb_strlen()
y strtoupper()
son tus amigos.
$this->title = $search['make'].' '.$search['model'];
if (mb_strlen($search['make']) <= 3 || mb_strlen($search['model']) <= 3) {
$this->title = strtoupper($this->title);
}
Tengo problemas con las reglas de Firestore para permitir el acceso a algunos recursos en una subcolección. Tengo algunos requests document...
No hay comentarios:
Publicar un comentario