Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Html または PHP で %SYSTEMDRIVE% のように src でドライブ文字を使用することは可能ですか?
私は何かをする必要があります
<img src=%SYSTEMDRIVE%/1.jpg ....
また、Windows で %USERPROFILE% のような現在のユーザー名 (HTML または PHP による手段) を検出する方法は?
$_ENVスーパーグローバルを使用すると、%USERPROFILE%などの環境の値を取得できます。したがって、たとえば、$_ENV['USERPROFILE']%USERPROFILE%の値を指定する必要があります。
$_ENV
$_ENV['USERPROFILE']