Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to read HTML source of a URL into a string and implode() by tag in PHP

1 Answer

0 votes
$html = implode('<div>', file('http://www.example.com/'));

echo $html;


/*
run: 

<html>
<head>

<body>


<!doctype html>
<div><html>
<div><head>
<div>    <title>Example Domain</title>
<div>
<div>    <meta charset="utf-8" />
<div>    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<div>    <meta name="viewport" content="width=device-width, initial-scale=1" />
<div>    <style type="text/css">
...

*

 



answered Jun 16, 2016 by avibootz

Related questions

1 answer 230 views
2 answers 340 views
2 answers 253 views
1 answer 255 views
1 answer 194 views
1 answer 214 views
...