eugene2009 Posted March 5, 2011 Share Posted March 5, 2011 My array results keep displaying like this. I want it to just display the numbers in the quotations. any help? array ( 0 => '4396', ) array ( 0 => '3934', ) array ( 0 => '5063', ) array ( 0 => '4394', ) array ( 0 => '3936', ) array ( 0 => '4393', ) array ( 0 => '4395', ) array ( 0 => '5064', ) array ( 0 => '5062', ) array ( 0 => '4224', ) array ( 0 => '3322', ) array ( 0 => '3321', ) array ( 0 => '3320', ) array ( 0 => '3725', ) Link to comment https://forums.phpfreaks.com/topic/229661-array-problem/ Share on other sites More sharing options...
flolam Posted March 5, 2011 Share Posted March 5, 2011 what code are you using to output this? Link to comment https://forums.phpfreaks.com/topic/229661-array-problem/#findComment-1183205 Share on other sites More sharing options...
eugene2009 Posted March 5, 2011 Author Share Posted March 5, 2011 preg_match_all('|<img src="/images/product/icon/(.+?).jpg|', $str, $matches); foreach ($matches[0] as $select) { preg_match_all('|<img src="/images/product/icon/(.+?).jpg|', $select, $matches2); var_export($matches2[1]); echo '<br>'; } Link to comment https://forums.phpfreaks.com/topic/229661-array-problem/#findComment-1183206 Share on other sites More sharing options...
flolam Posted March 5, 2011 Share Posted March 5, 2011 echo $matches2[1][0]; Link to comment https://forums.phpfreaks.com/topic/229661-array-problem/#findComment-1183211 Share on other sites More sharing options...
eugene2009 Posted March 5, 2011 Author Share Posted March 5, 2011 How would I make it a variable though? I need to plug those numbers into a database. And you know how to remove the apostrophes also? Link to comment https://forums.phpfreaks.com/topic/229661-array-problem/#findComment-1183311 Share on other sites More sharing options...
sasa Posted March 5, 2011 Share Posted March 5, 2011 preg_match_all('|<img src="/images/product/icon/(.+?).jpg|', $str, $matches); foreach ($matches[1] as $select) echo $select, '<br>'; Link to comment https://forums.phpfreaks.com/topic/229661-array-problem/#findComment-1183324 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.