Postgres::escapeBytea PHP 메소드

escapeBytea() 공개 메소드

Escapes bytea data for display on the screen
public escapeBytea ( $data ) : Data
$data The bytea data
리턴 Data formatted for on-screen display
    function escapeBytea($data)
    {
        return htmlentities($data, ENT_QUOTES, 'UTF-8');
    }
Postgres