
zdravko.balorda at siix
Jan 11, 2012, 10:11 PM
Post #4 of 5
(435 views)
Permalink
|
David E. Wheeler wrote: > On Jan 10, 2012, at 11:48 PM, Zdravko Balorda wrote: > >> Hi, >> I need to save some json code into a media file from a template. >> All I find is >> $image->upload_file( $fh, $fname ); >> >> How to store a string directly into $image file? > > Open a file handle on the JSON string: > > open my $fh, '<', \$json; > $image->upload_file($fh, 'some.json'); > This works, too?! Well, all one needs to know in life, is Perl. :) Thanks, Zdravko
|