I'm trying to use the ability to access Smartsheet data via the ODBC driver. http://smartsheet-platform.github.io/odbc-docs/ in php.
All is well, only the symbols on the Cyrillic are displayed by the question marks (????)
$conn = odbc_connect("Smartsheet","programmer*********","*****484");
if (!$conn)
return;
$query = odbc_exec($conn, "SELECT * FROM Заказы__4654483440461700s_");
while ($row = odbc_fetch_array($query)) {
$list[] = array_decode($row);
}