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
{{ message }}
This repository has been archived by the owner on May 8, 2024. It is now read-only.
Hi i want to copy image from URL to Azure storage using php
i am using PHP V8 and i already use file_put_contents to store image from url. How can we do it in Azure Blob Service.
In Regular PHP function
$image_url = "https://lh3.googleusercontent.com/ogw/ADea4I6YscwyB6zY_kLrgUwbZsPx32Fz8bq38jK1AzBo=s32-c-mo"; $pt_source = file_get_contents_curl($image_url); $file_name = "test.png"; $pt_img_to = $fixedDir . $file_name; file_put_contents($pt_img_to, $pt_source);
The text was updated successfully, but these errors were encountered: