本文整理汇总了PHP中Documento::insert方法的典型用法代码示例。如果您正苦于以下问题:PHP Documento::insert方法的具体用法?PHP Documento::insert怎么用?PHP Documento::insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Documento
的用法示例。
在下文中一共展示了Documento::insert方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionSubirDocumento
public function actionSubirDocumento()
{
Yii::import("ext.EAjaxUpload.qqFileUploader");
$folder = Yii::app()->getBasePath() . "/../upload/";
// folder for uploaded files
$allowedExtensions = array("pdf", "zip", "rar", "txt", "cvs", "doc", "docx", "xls", "xlsx", "ppt", "pptx");
//array("jpg","jpeg","gif","exe","mov" and etc...
$sizeLimit = 5 * 1024 * 1024;
// maximum file size in bytes
$uploader = new qqFileUploader($allowedExtensions, $sizeLimit);
$result = $uploader->handleUpload($folder, true);
$return = htmlspecialchars(json_encode($result), ENT_NOQUOTES);
$fileName = $result['filename'];
//GETTING FILE NAME
$fileSize = filesize($folder . $result['filename']);
//GETTING FILE SIZE
$fileExt = $result['ext'];
//GETTING FILE NAME
$documento = new Documento();
$documento->fecha_creacion = date("Y-m-d H:i:s");
$documento->nombre = $fileName;
$documento->usuario_id = Yii::app()->user->id;
$documento->peso = $fileSize;
$documento->extension = $fileExt;
$documento->insert();
echo $return;
// it's array
}
示例2: run
public function run()
{
$faker = Faker::create();
$documentos = [];
$documentos[] = ["titulo" => "Carta de Residencia", "contenido" => '<div style="background-color:rgb(230, 230, 255); padding:10px;"> <h2 style="text-align:right"><img alt="" src="' . asset("images/condominio/logo.png") . '" style="float:left" /><span style="font-size:20px">{condo}</span></h2> <p style="text-align:right"><span style="font-size:16px">{condo_direccion}</span></p> <p style="text-align:right"><span style="font-size:12px">Rif: {condo_doc}</span></p> </div> <p style="text-align:right"><span style="color:#0000FF"><span style="font-size:14px">{fecha}</span></span></p> <p style="text-align:center"> </p> <p style="text-align:center"><span style="color:#000000"><span style="font-size:18px">CARTA DE RESIDENCIA</span></span></p> <p style="text-align:center"> </p> <p style="text-align:center"> </p> <p style="text-align:center"> </p> <p style="text-align:justify"><span style="font-size:18px">Por medio de la presente hacemos constar actuando como Miembros Legales de este consejo Comunal y vecinos de {condo}, que el ciudadano {persona} portador(a) de la cedula de identidad Nº {persona_cedula} , reside en este sector en la {residencia}.</span></p> <p style="text-align:justify"><span style="font-size:18px"> Documento Expedido a los {dia} día(s) del mes de {nombre_mes} de {ano}</span></p> <p style="text-align:justify"><span style="font-size:18px"> Dicho Ciudadano(a) presenta buena conducta y espiritu de colaboración por los demás</span></p> <p style="text-align:justify"> </p> <p style="text-align:right"><span style="font-size:18px"> </span><strong><em><span style="font-size:20px">Atentamente, El consejo comunal de {condo}</span></em></strong></p> <p style="text-align:right"> </p> <p style="text-align:right"> </p> <p style="text-align:right"> </p> <p style="text-align:right"> </p> <p style="text-align:right"> </p> <p style="text-align:right"> </p> <p style="text-align:center">__________________________________</p> <p style="text-align:center"><strong><span style="font-size:22px">{propietario}</span></strong></p> <p style="text-align:center"><span style="font-size:20px"><strong>C.I</strong>: {propietario_cedula}</span></p> <p style="text-align:center"><span style="font-size:20px"><strong>Telefono</strong>: {propietario_telefono}</span></p> <p style="text-align:center"> </p> <p><img alt="" src="' . asset("images/condominio/logo.png") . '" style="float:right; height:70px; width:130px" />Telefono: {condo_telefono}</p> <p>Correo: {condo_email}</p> <p style="text-align:left">Rif: {condo_doc}</p> '];
Documento::insert($documentos);
}
示例3: Producto
$documento->setOperacion($mov['ope']);
$producto = new Producto();
$cliente = new Cliente();
$id_ses = session_id();
if ($_GET['action'] == 'Guardar' or $_GET['action'] == 'Actualizar') {
$id_rem = $_GET['id_rem'];
$no_doc = $_GET['no_doc'];
$id_ses = $id_ses;
$documento->setIdCliente($id_rem);
$documento->setNoDoc($no_doc);
$documento->setSesion($id_ses);
}
if ($_GET['action'] == 'Guardar') {
try {
if ($_GET['id_doc'] == 0) {
$documento->insert();
} else {
$documento->update($_GET['id_doc']);
}
} catch (Exception $e) {
echo "Error Insertando";
}
}
if ($_GET['action'] == 'Actualizar') {
try {
$documento->update($_POST['id']);
} catch (Exception $e) {
echo "Error actualizando";
}
}
if ($_GET['action'] == 'Upload') {