복붙노트

[WORDPRESS] XML 파일에 쓰기 워드 프레스에 fopen의 사용

WORDPRESS

XML 파일에 쓰기 워드 프레스에 fopen의 사용

해결법


  1. 1.다른 여부를 확인과 함께, 절대 경로 (전체 경로)를 사용하여보십시오 :

    다른 여부를 확인과 함께, 절대 경로 (전체 경로)를 사용하여보십시오 :

     $file = 'home/my/path/uploads/producers.xml'; //Absolute path
    if(is_file($file) && is_readable($file)){
     $open = fopen($file, 'w') or die ("File cannot be opened.");
     fwrite($open, $xml->asXML());
     fclose($open); 
    }
    
  2. from https://stackoverflow.com/questions/8052516/write-to-xml-file-using-fopen-in-wordpress by cc-by-sa and MIT license