fork download
  1. <?php
  2. $value = array(10=>array('A Is For Annabelle 681 2 (fat Quarter)'=>'2.8500','A Is For Annabelle 681 2 (yardage)'=>'7.9500'));
  3.  
  4. $ydPrice=$fqPrice='';;
  5.  
  6.  
  7. foreach ($value as $first){
  8.  
  9. foreach ($first as $key=>$value){
  10.  
  11.  
  12. if (preg_match('#yd|yardage#',$key)){
  13. $ydPrice = $value;
  14. }
  15.  
  16. if (preg_match('#fq|fat Quarter#',$key)){
  17. $fqPrice = $value;
  18. }
  19. }
  20. }
  21.  
  22. echo 'y=' . $ydPrice;
  23. echo 'f=' . $fqPrice;
  24. ?>
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
y=7.9500f=2.8500