<?php
$mysqli->set_charset('utf8mb4');
$mysqli->query("create table test (t varchar(255) character set utf8mb4)");
var_dump($mysqli->query("show create table test")->fetch_row()[1]);
$mysqli->query("insert into test values ('test'), ('ัะตัั')");
var_dump($mysqli->query("select t, length(t) len from test")->fetch_all());