fork download
  1. <?php
  2.  
  3. function detect($url){
  4. if (preg_match('/https:\/\/www\.instagram\.com\/p\/.*/', $url) === 1){
  5. return "First one\n";
  6. }elseif (preg_match('/https:\/\/www\.instagram\.com\/stories\/.*/', $url) === 1){
  7. return "Second one\n";
  8. }elseif (preg_match('/https:\/\/www\.instagram\.com\/reel\/.*/', $url) === 1){
  9. return "Third one\n";
  10. }else{
  11. return "[005] System encountered a problem detecting this url. System stopped in App\Http\Controllers\Runtime\Instagram";
  12. }
  13. }
  14.  
  15. echo detect("https://w...content-available-to-author-only...m.com/p/xyz");
  16. echo detect("https://w...content-available-to-author-only...m.com/stories/xyz");
  17. echo detect("https://w...content-available-to-author-only...m.com/reel/xyz");
  18. echo detect("https://w...content-available-to-author-only...m.com");
Success #stdin #stdout 0.02s 26376KB
stdin
Standard input is empty
stdout
First one
Second one
Third one
[005] System encountered a problem detecting this url. System stopped in App\Http\Controllers\Runtime\Instagram