Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this method:

$message->from_address

Which when displayed on the browser, is displayed as

<a href="some text">asdasd</a>

I only need the text asdasd. How would I separate it such that the <a href="some text"> and </a> parts will be separated.

I want it that way because in order to be stored in a variable to be re-used later. I tried exploding it by having > as my delimiter but it only displays the full text. What did I miss?

share|improve this question

1 Answer

up vote 5 down vote accepted
<?php

$str = '<a href="some text">asdasd</a>';

echo strip_tags($str);
share|improve this answer
upvote for simple answer. – CroiOS Nov 19 '12 at 16:10
thanks, this works. – CHi RiLo Nov 19 '12 at 16:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.