URL का अंतिम भाग प्राप्त करने के लिए, PHP में preg_match() का उपयोग करें। मान लें कि निम्नलिखित हमारा इनपुट URL है
$websiteAddress='https://www.tutorialspoint.com/java/java_questions_answers/9989809898';
हमें निम्नलिखित आउटपुट प्राप्त करने की आवश्यकता है, केवल अंतिम भाग के साथ, जो एक संख्या है
9989809898'
उदाहरण
URL का अंतिम भाग प्राप्त करने के लिए PHP कोड निम्नलिखित है
<!DOCTYPE html> <html> <body> <?php $websiteAddress='https://www.tutorialspoint.com/java/java_questions_answers/9989809898'; if(preg_match("/\/(\d+)$/",$websiteAddress,$recordMatch)){ $lastResult=$recordMatch[1]; } echo "The result is as follows:",$lastResult; ?> </body> </html>
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा
The result is as follows:82345999