2012-03-10 12 views
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); 
+2

なぜfopen、fwrite、fcloseの代わりにfile_put_contentsを使用しないのですか? –

+0

ファイルを['copy'](http://php.net/copy)しないのはなぜですか? – salathe

答えて

1

は、私は次のエラーを参照してください。次に、それに非文字列である文字列を追加しようとしました(3行目)。だから、行2のvarを変更するだけです。

+0

ありがとう、私はfile_put_contents私が探していると信じています。 – RegEdit

関連する問題