캐싱 기술
<?php ob_start();//开启缓存 // $c//从缓存中获取内容 $c//localhost/weizhuan/detail.php?aid=349&uid=1534'); ob_end_clean();//关闭缓存并清空 /***缓存结束***/ file_put_contents("ceshi2.html", $content); echo $content; echo "ok"; ?>
ob_start();//캐싱 활성화
// $c//캐시에서 콘텐츠 가져오기
$c//localhost/weizhuan/detail. ?aid=349&uid=1534');
ob_end_clean();//캐시를 닫고 지우기
/***캐싱 종료***/
file_put_contents("ceshi2.html", $content);
echo $content
echo "확인";
?>
위 내용은 HTML 생성 내용을 포함하여 HTML 파일을 생성하기 위한 간단한 HTML 생성 코드와 PHP 크롤링 페이지를 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되길 바랍니다.