fork download
  1. <?php
  2.  
  3. $str = '<img src="/pa/ggg/ggg/ggg.jpg" style="" alt="что нужно выбрать1">';
  4.  
  5. preg_match('/alt="(.*)"/uU', $str, $matches);
  6. print_r($matches);
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
Array
(
    [0] => alt="что нужно выбрать1"
    [1] => что нужно выбрать1
)