$arr = file('http://www.example.com/');
print_r($arr);
/*
run:
Array
(
[0] => <!doctype html>
[1] => <html>
[2] => <head>
[3] => <title>Example Domain</title>
[4] =>
[5] => <meta charset="utf-8" />
[6] => <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
[7] => <meta name="viewport" content="width=device-width, initial-scale=1" />
[8] => <style type="text/css">
[9] => body {
[10] => background-color: #f0f0f2;
[11] => margin: 0;
[12] => padding: 0;
[13] => font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
[14] =>
[15] => }
[16] => div {
[17] => width: 600px;
...
*/