Skip to content

Instantly share code, notes, and snippets.

@jangaraev
Last active May 24, 2022 05:55
Show Gist options
  • Save jangaraev/a8be08ab90f19f44cce66c3657ae0d5a to your computer and use it in GitHub Desktop.
Save jangaraev/a8be08ab90f19f44cce66c3657ae0d5a to your computer and use it in GitHub Desktop.
Check if browser supports webp
<?php
// plain PHP solution
$supportsWebp = strpos($_SERVER['HTTP_ACCEPT'], 'image/webp') !== false;
// Laravel solution
$supportsWebp = request()->accepts('image/webp');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment