2016-07-26 6 views
-4

PHPでPHPの作成ページ用の関数はありますか?PHPでページを作成するには?

create page("file.php", "<html><body><p>Hello!</p></body></html>"); 

私はsite.it上でそれを実行した場合、それは<html><body><p>Hello!</p></body></html>でsite.it/file.phpを作成します。 私はそのようなものだろう。

私はそれを行うことはできますか?あなたはこの機能を使用する必要が

+3

PHPは、「ページ」として私たちが知っているのいずれかの概念がありません。 – George

+0

PHPにはファイルの概念があります。そして、はい、ファイルを作成し、その内容を指定する機能があります。しかし、これはあなたがGoogleに取るべきものです。 –

+0

あなたはその機能をかなり簡単に行うことができます。 'function create_page($ path、$ content){' ... – chris85

答えて

-1

file_put_contentsファイルを作成し、このファイルにデータを配置する

例:

<?php 
$file = 'people.txt'; 
// Open the file to get existing content 
$current = file_get_contents($file); 
// Append a new person to the file 
$current .= "John Smith\n"; 
// Write the contents back to the file 
file_put_contents($file, $current); 
?> 
関連する問題