mirror of
https://github.com/LukeHagar/slinky.git
synced 2025-12-06 04:21:20 +00:00
12 lines
300 B
PHP
12 lines
300 B
PHP
<?php
|
|
// Sample PHP file with URLs
|
|
$url1 = "https://developer.mozilla.org";
|
|
$url2 = "https://github.com/example/repo";
|
|
$urlBad = "http://example..com";
|
|
$urlMissing = "https://";
|
|
$urlNonexistent = "https://notarealwebsite.com/image.png";
|
|
$urlPlaceholder = "https://{tenant}.api.identitynow.com";
|
|
?>
|
|
|
|
|