PHPで指定したファイルやURLを文字列に読み込む
1 2 3 4 |
<?php $file = file_get_contents('https://xxx.xxx/xxx.html'); echo $file; ?> |
xxx.htmlが文字列として読み込まれます。
1 2 3 4 |
<?php $file = file_get_contents('https://xxx.xxx/xxx.html'); echo $file; ?> |
xxx.htmlが文字列として読み込まれます。