php PODS从发布的表单中保存图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php PODS从发布的表单中保存图像相关的知识,希望对你有一定的参考价值。

<?php 
//get URL of image from form input 
$img = $_POST[ 'image' ]; 

//add image to media library and get its ID 
$img = pods_attachment_import( $img ); 

//create array of data to be added 
//You can add additional fields here if you want 
$data = array( 
    'image_field'  => $img , 
); 
//get pods object for item of ID $id 
$pod = pods( 'pod_name', $id ); 
//update the item and return item id in $item 
$item = $pod->save( $data);

以上是关于php PODS从发布的表单中保存图像的主要内容,如果未能解决你的问题,请参考以下文章

php PODS循环与特色图像

Pods 框架教程的搜索表单

从 html 表单将值保存在数据库中

如何使用 jquery、ajax 和 php 在数据库中保存图像文件 (BLOB)

如何以注册表单上传和保存图像?

将 HTML 表格另存为图像