PHP String Crop


Useful little function that finds and returns a chunk of a string between point A and point B..

function crop( $d='', $b='', $e='' )
{ return substr( $d, strpos( $d, $b )+strlen( $b ), strpos( $d, $e, strpos( $d, $b ) )-strpos( $d, $b )-strlen( $b ) ); }


$str = "some random STRING with some
html in it.";
echo crop( $str, '
', '' );

// should output "html"

Comments

Popular posts from this blog

உடல் அறிகுறிகள், வலிகள் மற்றும் அவற்றின் சிகிச்சைகள்: வீட்டு சிகிச்சைகள் மற்றும் அக்குபிரஷர் புள்ளிகள்

MySQL table and want to build a XML file with it in order to make a RSS feed.

REST / AJAX calls from within a Jaggery script