monkover Posted February 14, 2011 Share Posted February 14, 2011 Hey all, I wrote a crawler and have already written the string to extract links. i get a multidimensional array. this is #13 for example Array[0][13] => <a class="menuitem" href="/home-news.html" title="Home / News">Home / News</a> Array[1][13] => /home-news.html ok so far so good. Now I want to extract the name Home / News and write that into a database and the link as well. can i use the preg_match_all() to search an array? or how can i extract it? Thanks so much! monkover Link to comment https://forums.phpfreaks.com/topic/227584-help-extracting-data-from-a-multidimensional-array/ Share on other sites More sharing options...
monkover Posted February 14, 2011 Author Share Posted February 14, 2011 bump Link to comment https://forums.phpfreaks.com/topic/227584-help-extracting-data-from-a-multidimensional-array/#findComment-1174190 Share on other sites More sharing options...
AbraCadaver Posted February 14, 2011 Share Posted February 14, 2011 strip_tags($Array[0][13]); Link to comment https://forums.phpfreaks.com/topic/227584-help-extracting-data-from-a-multidimensional-array/#findComment-1174192 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.