mirror of
https://github.com/php/presentations.git
synced 2026-03-24 23:52:18 +01:00
14 lines
208 B
PHP
Executable File
14 lines
208 B
PHP
Executable File
<?php
|
|
|
|
if ($argc < 2) {
|
|
die ("You must specify a URL\n");
|
|
}
|
|
|
|
$url = $argv[1];
|
|
if (!preg_match ("@^\S+\://@", $url)) {
|
|
die ("You must specify a URL identifier\n");
|
|
}
|
|
|
|
print file_get_contents($url);
|
|
?>
|