fork download
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <title></title>
  7. </head>
  8. <body>
  9.  
  10. <?php
  11. $homepage = file_get_contents('http://f...content-available-to-author-only...b.io/');
  12. preg_match( '/<title>(.*?)<\/title>/ui' , $text , $title );
  13. echo $title[1];
  14. ?>
  15.  
  16. </body>
  17. </html>
Success #stdin #stdout #stderr 0.01s 20592KB
stdin
Standard input is empty
stdout
<!DOCTYPE html>

<html>
<head>
	<meta charset="utf-8">
	<title></title>
</head>
<body>


</body>
</html>
stderr
PHP Warning:  file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/0iEumL/prog.php on line 11
PHP Warning:  file_get_contents(http://f...content-available-to-author-only...b.io/): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/0iEumL/prog.php on line 11
PHP Notice:  Undefined variable: text in /home/0iEumL/prog.php on line 12
PHP Notice:  Undefined offset: 1 in /home/0iEumL/prog.php on line 13