
david at justatheory
Jan 11, 2012, 9:04 AM
Views: 437
Permalink
|
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'); HTH, David
|