0
この例では、style.cssファイルの内容は出力文字列に書き込まれません。私は間違って何をしていますか?あなたは(documentationによる)$customcss
にリソースを入れて、2行目ではファイルを開き、その内容を別のファイルにコピーします。
:
$openFile = get_theme_root() . "/" . get_template() . "/myfile.css";
$customcss = fopen($openFile, 'w');
$customcss.=file_get_contents(get_bloginfo('template_directory')."/styles/test/style.css");
fwrite($openFile, $customcss);
fclose($openFile);
なぜfopen、fwrite、fcloseの代わりにfile_put_contentsを使用しないのですか? –
ファイルを['copy'](http://php.net/copy)しないのはなぜですか? – salathe