fork(3) download
  1. <?php
  2. $array1 = array(
  3. "http://content-available-to-author-only.com/photo-30666517_315641240",
  4. "http://content-available-to-author-only.com/photo-63314435_318050082",
  5. "http://content-available-to-author-only.com/photo-3314435_318050082"
  6. );
  7. $array2 = array(
  8. "photo-30666517_315641240",
  9. "photo-63314435_318050082"
  10. );
  11. $out=array();
  12. foreach($array1 as $value) {
  13. foreach($array2 as $val) {
  14. if(strpos($value, $val)) {
  15. continue 2;
  16. }
  17. }
  18. $out[]=$value;
  19. }
  20. print_r($out);
  21.  
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
Array
(
    [0] => http://content-available-to-author-only.com/photo-3314435_318050082
)