如何从 cakephp 3 中的 json 字符串中删除 \r 和 \n?

How to Remove \r and \n from json string in cakephp 3?

在执行 json_encode

之后,我得到如下所示的字符串
[{"pid":1,"name":"Patient1","mobile":"123456789","birthdate":"07/23/1991","address":"57, New Building,\r\nCollege Road,\r\nPune-3545001","created":"2017-09-25T08:14:10+00:00","modified":"2017-09-25T12:27:20+00:00"}]

那么如何删除 \r 和 \n。

str_replace('\r\n', '', $string);