UTF-8 output with CakePHP

前端 未结 4 1513
野性不改
野性不改 2020-12-19 07:18

I\'m trying to move some Excel-Data to MySQL, but having troubles with encoding.

What I did:

  1. Data export from OpenOffice 3.1 as csv
4条回答
  •  爱一瞬间的悲伤
    2020-12-19 07:41

    $conn1  = mysqli_connect($this->db_host, $this->db_username, $this->db_password, $this->db_name);
    

    Add this in connection

    mysqli_set_charset($conn1,"utf8mb4");

提交回复
热议问题