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.
XAMPPを使用しています
DocumentRoot は C:/xampp/htdocs です
C:/DATA/SLIDES にファイルをアップロードしたい
これは可能ですか (Apache のデフォルトの DocumentRoot を変更せずに)。
XAMPPのFRESHインストールを追加したいと思います。
PHP INI ファイルはデフォルト設定です。これを機能させるには、PHP.INI にどのような変更を加える必要がありますか?
はい。DocumentRootPHP は Apache の設定を知りませんし、気にもしません。重要なのは、OS レベルのファイル/ディレクトリのアクセス許可と、有効にした制限だけですphp.ini
DocumentRoot
php.ini
例:
$tmp_name = $_FILES['uploaded']['tmp_name']; $destination = 'c:/DATA/SLIDES/' . $_FILES['uploaded']['name']; move_uploaded_file($tmp_name, $destination);