Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
читаем мануалы: хотя бы тут:Почему не работает...
Заменять такойи чем её заменить?
<?php
$homepage = file_get_contents('http://www.example.com/');
echo $homepage;
?>
<?php
// get contents of a file into a string
$filename = "/usr/local/something.txt";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
?>
include('about.html');Почему не работает конструкция
$data = include(about.html);
echo $data;
и чем её заменить?
file_get_contents() выполняет то же самое, что и в этом посте Для просмотра ссылки Войдианалог инклуда с занесением в переменную:
PHP:<?php $data= file_get_contents('script.php'); eval($data); ?>
if is_readable(about.html){
$data = file_get_contents(about.html);
echo $data;
}