Created
November 13, 2017 14:55
-
-
Save martinjinda/833ee552897b2e8e346daf3326f0541c to your computer and use it in GitHub Desktop.
Find page title
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$fp = fopen("http://www.example.com","r"); | |
while (!feof($fp) ){ | |
$page .= fgets($fp, 4096); | |
} | |
$titre = eregi("<title>(.*)</title>",$page,$regs); | |
echo $regs[1]; | |
fclose($fp); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment