• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn viết grab đơn giản nhất

Admin

Well-Known Member
Staff member
Administrator
Ví dụ khi muốn lấy nội dung từ trang abcxyz.com
PHP:
<?php
//Đường dẫn
$url = 'http://abcxyz.com';
//Bắt đầu lấy dữ liệu
$noidung = file_get_contents($url);
Khi bạn muốn lấy nội dung 1 đoạn, ví dụ từ abc đến cuối bài xyz)
PHP:
//Bắt đầu
$batdau = 'abc';
//Kết thúc
$ketthuc = 'xyz';
//Xử lý
$bd = explode($batdau, $noidung);
$kt = explode($ketthuc, $bd['1']);
$text = $batdau.$kt['0'].$ketthuc;
//Hiển thị đoạn văn bản lấy được
echo $text;
Đây là code đầy đủ
PHP:
<?php
//Đường dẫn
$url = 'http://abcxyz.com';
//Bắt đầu lấy dữ liệu
$noidung = file_get_contents($url);
//Bắt đầu
$batdau = 'abc';
//kết thúc
$ketthuc = 'xyz';
//Xử lý
$bd = explode($batdau, $noidung);
$kt = explode($ketthuc, $bd['1']);
$text = $batdau.$kt['0'].$ketthuc;
//Hiển thị đoạn văn bản lấy được
echo $text;
?>
Chúc các bạn thành công!
 

Facebook Comments

New posts New threads New resources

Back
Top