本文整理匯總了PHP中Producto::setFormatofoto方法的典型用法代碼示例。如果您正苦於以下問題:PHP Producto::setFormatofoto方法的具體用法?PHP Producto::setFormatofoto怎麽用?PHP Producto::setFormatofoto使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Producto
的用法示例。
在下文中一共展示了Producto::setFormatofoto方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Producto
$descripcion = $_POST["descripcion"];
$enlace = $_POST["enlace"];
$nroenvio = $_POST["nroenvio"];
$empresa = $_POST["empresa"];
$producto = new Producto();
$pdao = new ProductoDao();
$producto->setIdartesano($idartesano);
$producto->setAceptado(0);
$producto->setNotificado(0);
$producto->setDescripcion($descripcion);
$producto->setLink($enlace);
$producto->setEmpresa($empresa);
$producto->setNroenvio($nroenvio);
$producto->setStock(0);
$producto->setVentas(0);
$producto->setFormatofoto(0);
$producto->setPrecio(0);
$producto->setMostrar($_POST["mostrar"]);
if ($pdao->create($conn, $producto)) {
?>
<meta http-equiv="REFRESH" CONTENT="0,url=../Interfaces/principal.php">
<script type="text/javascript">
alert("Producto registrado exitosamente");
</script>
<?php
} else {
?>
<meta http-equiv="REFRESH" CONTENT="0,url=../Interfaces/agregarProducto.php">
<script type="text/javascript">
alert("Registro no exitoso.");
</script>
示例2: cloneObject
/**
* Clone will return identical deep copy of this valueObject.
* Note, that this method is different than the clone() which
* is defined in java.lang.Object. Here, the retuned cloned object
* will also have all its attributes cloned.
*/
function cloneObject()
{
$cloned = new Producto();
$cloned->setIdproducto($this->idproducto);
$cloned->setNombproducto($this->nombproducto);
$cloned->setDescripcion($this->descripcion);
$cloned->setLink($this->link);
$cloned->setIdartesano($this->idartesano);
$cloned->setAceptado($this->aceptado);
$cloned->setEmpresa($this->empresa);
$cloned->setNroenvio($this->nroenvio);
$cloned->setNotificado($this->notificado);
$cloned->setStock($this->stock);
$cloned->setVentas($this->ventas);
$cloned->setFormatofoto($this->formatofoto);
$cloned->setPrecio($this->precio);
$cloned->setMostrar($this->mostrar);
return $cloned;
}