我正在尝试使用通过ODBC驱动程序访问Smartsheet数据的功能。 php中的http://smartsheet-platform.github.io/odbc-docs/。
一切都很好,只有西里尔字母上的符号以问号显示(????)
$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);
}