From professional translators, enterprises, web pages and freely available translation repositories.
in order to do that we check the user agent string that the browser sends as part of its http request.
次により実用的なことをしてみましょう。ページを見ているユーザが使用 しているブラウザの種類を確認してみます。これを行なうには、ブラウザが httpリクエストの一部として送信したuser agent文字列を調べます。 この情報は、 変数 に 保存されています。phpでは、変数名は常にドル記号で始まります。 今、使用する変数は、 $_server["http_user_agent"] です。
use the user-agent feature if the website you are visiting asks you to use a different browser (and do not forget to send a complaint to the webmaster!)
あなたが訪れたウェブサイトから、他のブラウザを使うようにと言われたときには、 ユーザエージェント機能を使いましょう。(そして、ウェブマスターに文句を書いて送ることも忘れずに!)
the delete button can be used to delete the selected entry in the list of configured agent bindings. the delete all will remove all the configured user agent strings. click the apply to take your changes in effect.
削除ボタンで選択されているエージェントバインディングを削除できます。 全て削除は、設定されたユーザエージェント文字列を全て削除します。 適用をクリックして変更内容を保存して下さい。
you can use the check boxes at the top of the screen to build a user agent that is uniquely yours, by choosing your own combination of operating system name and version, platform, processor type, and language.
スクリーン上部のチェックボックス群を使って、あなた固有のユーザエージェントを作ることができます。os名、バージョン、プラットフォーム、プロセッサタイプ及び言語等を適宜組み合わせることでユニークなユーザエージェントヘッダが作成できます。
unfortunately most user agents do not send form data in this semi-colon separated format.
注意 htmlエンティティにマッチする変数については注意が必要です。 amp、 copy、 poundのようなものがブラウザから送信さ れた場合、エンティティの実体が望ましい変数名の代わりに使用されま す。これは明らかな問題点であり、w3cが何年も指摘し続けてきたこと です。リファレンスは、 http://www.w3.org/tr/html4/appendix/notes.html#h-b.2.2 にあります。phpでは、 .ini ディレクティブのarg_separatorにより引数のセパレータをw3cが 推奨するセミコロンに変更することが可能です。残念なことに多くのユー ザエージントは、このセミコロン区切り形式でデータを送信しません。 よりポータブルな方法としては、セパレータに の代わりに amp; を使用するというものがあります。この場合、phpの arg_separatorを変更する必要はありません。セパレータは $amp; の ままにしますが、urlは htmlentities() (urlencode($data))によりエンコー ドして下さい。
because of minor differences in the way that different web browsers function, web sites that rely too much on a single browser may sometimes not display as intended when viewed using another browser. some web sites are smart enough to examine the contents of the user agent header and incorporate this information in the & html; code so that the content is displayed correctly regardless of the browser used.
webブラウザ毎の機能の違いの為、特定のwebブラウザに依存し過ぎているwebサイトは、他のブラウザでは意図されたとおりには表示されない事があります。その為、webサイトによっては、ユーザエージェントヘッダーの内容を調べ、使われているブラウザの違いに依らず正確に表示されるよう htmlコードに反映させるようにしているところもあります。