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.
私がそうするとき、escapeshellarg('référencement') それは'rfrencement'を返します。どうすれば問題を解決できますか?
escapeshellarg('référencement')
これはほぼ確実にシステムロケールが原因です。ロケールとして設定されたエンコーディングとは対照的に、引数にどの文字列エンコーディングを使用していますか?デバッグ手順として、UTF-8を強制的に使用してみることができます
setlocale(LC_CTYPE, "en_US.UTF-8");
電話をかける前にescapeshellarg、それが役立つかどうかを確認してください。
escapeshellarg