accept_charset([$charset = 'utf-8'])
Parameters: |
|
---|---|
Returns: |
TRUE if the character set is accepted, FALSE if not |
Return type: |
bool |
Lets you determine if the user agent accepts a particular character set. Example:
1 2 3 4 | if ( $this ->agent->accept_charset( 'utf-8' )) { echo 'You browser supports UTF-8!' ; } |
Note
This method is not typically very reliable since some browsers do not provide character-set info, and even among those that do, it is not always accurate.
Please login to continue.