- var_dump: documentation ( source)
- json_decode: documentation ( source)
- preg_match_all: documentation ( source)
<?php
$string = '["http://www.elodiedetails.com/storage/01C91C41AFB1E9E491CCB750D86948330B2EFFA95C33849C0127E5557380AF8B/b1e48c712dd94cc2b91d2ced7e40f7c6/jpg/media/245df3634bd045b4bbf7bdb003e5ab1b/zip_go-desert-weaves-elodie-details_50610135582NA_3_1000px.jpg", "http://www.elodiedetails.com/storage/FEFED8E72F7F2B4B1D546FBB8D10A7298C963A1F141EA55EFABA5B29B316D924/877cb34feaaf4560967081ef63716b09/jpg/media/08db7d4521704b35866b10b5f445cd5b/store-my-stuff-wild-paris-elodie-details-SS20-lifestyle_70650128580NA_web.jpg"]';
// the "hard" way
preg_match_all('/"([^"]+)"/', $string, $matches);
var_dump($matches[1]);
// the easy way
var_dump(json_decode($string));