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.
php5を使用して、ルートから別のディレクトリにxmlファイルを保存しようとしています。何か案は?
//write to the file $filename = $id . ".xml"; $doc->save($filename);
ファイルをディレクトリに保存したい/xml/。
/xml/
引数を に変更して$doc->save、パスを含めます
$doc->save
$filename = '/xml/' . $id . ".xml"; $doc->save($filename);
ここで注意すべきことは、これは Web URL ではなくファイルシステム パスであるため、文字通り/xmlnotに保存されることDOCUMENT_ROOT/xmlです。
/xml
DOCUMENT_ROOT/xml