Php içine örnek site de dahil olmak üzere ve etkileşimli hale

0 Cevap php

I am working on a small project for learning PHP better. This project has a primary file, which opens another website (e.g. youtube) by using fopen + fread. (or file_get_contents ?)

Site bir değişkene kaydedilir ve bundan sonra bir işlev dosyanın içeriğini ayrıştırmak ve örneğin, gelişmiş içerik ile belirli öğeleri değiştirmeniz gerekir:

<div onclick="play(id=12432);">
Play Video
</div>

replace with

<div onclick="play(id=12432);">
Play Video
<div>
<div onclick="add2fav(id=12432);">
Add to favorites
</div>

Birisi büyük bir performans pırasa ve temiz kod olmadan bu gerçekleştirebilirsiniz nasıl herhangi bir fikir?

It is just about "loading a website", "advance its content", "echo it".

0 Cevap