You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[getimagesize](https://www.php.net/manual/en/function.getimagesize.php) function works only with local and supported streams.
6
+
With introduction of more advanced storages, like AWS S3 or Azure Blob Storage this function will cause issues where file is not accessible.
7
+
8
+
## How to fix
9
+
10
+
[getimagesizefromstring](https://www.php.net/manual/en/function.getimagesizefromstring.php) can be used instead to retrieve all the information from file.
11
+
This function works with data strings, so you should read the file content using specific adapter before using it.
0 commit comments