यहां, हमने एक फ़ंक्शन सेट किया है जो "https:// को एक स्ट्रिंग में जोड़ता है। मान लें कि हमने निम्नलिखित मान पारित कर दिया है -
example.com
और जो आउटपुट हम चाहते हैं वह "https://" यानी एक वास्तविक लिंक के साथ है -
https://example.com
इसके लिए आप preg_match() के साथ डॉट (.) नोटेशन और कंडीशनल मैच का इस्तेमाल कर सकते हैं।
उदाहरण
<!DOCTYPE html> <body> <?php function addingTheHTTPValue($stringValue) { if (!preg_match("~^(?:f|ht)tps?://~i", $stringValue)) { $stringValue = "https://" . $stringValue; } return $stringValue; } echo addingTheHTTPValue("example.com"); echo "<br>"; echo addingTheHTTPValue("https://example.com"); ?> </body> </html>
आउटपुट
https://example.com https://example.com