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.
私のページでは、いくつかのxmlファイルを開こうとしています。
$xml = simplexml_load_file("users/" .$f->name."/data.xml");
問題は、$f->nameアクセント付きの母音として文字を含めることができることです。そのため、ファイルを開くときにエラーが発生します。たとえば、Garcíaの代わりにGarcÃaと表示されます。どうすれば解決できますか?(私はすでに試してみましたutf8_encode($f->name))
$f->name
utf8_encode($f->name)
試す:
$xml = simplexml_load_file("users/" .rawurlencode($f->name)."/data.xml");