ac1919 Selamlar, Text kolonundan değer şöyle geliyor: <p> <img src="foo"> <img src="bar"> </p> Bu değer içindeki img taglarına sahip src leri php ile tespit adip nasıl diziye alabilirim ?
mgsmus DOMDocument ve DOMXPath ile $html = '<p> <img src="foo"> <img src="bar"> </p>'; $images = []; $document = new DOMDocument(); $document->loadHTML($html); $xpath = new DOMXPath($document); $imageSources = $xpath->query('//img/@src'); foreach($imageSources as $source) { $images[] = $source->value; } /* $images: Array ( [0] => foo [1] => bar ) */ Daha fazlası için Symfony DomCrawler da kullanabilirsiniz: https://symfony.com/doc/master/components/dom_crawler.html