Well PHP runtime doesnt actully have direct access to the DataStore right now :)
Have to proxy it though say the Cloud Datastore. https://developers.google.com/datastore/ Which is then just an exercise in accessing a remote API. https://gae-php-tips.appspot.com/2013/12/23/getting-started-with-the-cloud-datastore-on-php-app-engine/ But frankly storing images in the datastore, is probably not the best practice. Using Google Cloud Storage would be better. https://developers.google.com/appengine/docs/php/googlestorage/ On 16 August 2014 10:26, Rohith D Vallam <[email protected]> wrote: > Hello, > > Is there some example code in PHP which will enable me to store / > retrieve images (jpg, png files) to / from the google datastore ? I found > example code for python(link: > https://developers.google.com/appengine/articles/python/serving_dynamic_images > ) and java (link: > https://developers.google.com/appengine/articles/java/serving_dynamic_images) > but > not for PHP. If someone has a working PHP code for storing / retrieving > images to / from datastore , it would be great if you could share the code. > > Thanks and Regards, > Rohith > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/google-appengine. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
