Skip to content
Advertisement

How to remove first few letter and print the last title in php

I have got the permalink and the page title. I need to remove the only permalink and print the title in using PHP. Here is code: $string = "http://example.com/blog/PageTitle"

From here remove the http://example.com/blog/ and print only PageTitle

I tried it:

JavaScript

N.B: my $string and pageTitle are changable like http://example.com/about/PageTitle, http://example.com/contact/PageTitle2 etc.

Advertisement

Answer

Try this

JavaScript

This should work.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement