ディレクトリに PHP ファイルを作成しようとしていますが、作成されません。これが私のコードです:
function createPage(){
$name='test';
$file=base_url()."test/".$name.".php";
$handle = fopen($file, 'w') or die('Cannot open file: '.$file);
}
これは私に示しています:
failed to open stream HTTP wrapper does not support writable connections error.
誰でもこの問題を解決できますか? 私はPHPファイル処理が初めてです。