php encoding issue htmlentities

后端 未结 2 1092
梦如初夏
梦如初夏 2021-01-07 14:14

I have user input and use htmlentities() to convert all entities. However, there seems to be some bug. When I type in

ääää öööö üüüü ääää

I

2条回答
  •  醉梦人生
    2021-01-07 14:36

    You must manually specify the encoding (UTF-8) for htmlentities():

    echo htmlentities("ääää öööö üüüü ääää", null, "UTF-8");
    

    Output:

    ääää öööö üüüü ääää
    

提交回复
热议问题