當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Producto::setLink方法代碼示例

本文整理匯總了PHP中Producto::setLink方法的典型用法代碼示例。如果您正苦於以下問題:PHP Producto::setLink方法的具體用法?PHP Producto::setLink怎麽用?PHP Producto::setLink使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Producto的用法示例。


在下文中一共展示了Producto::setLink方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: Datasource

include_once "../Librerias/ProductoDao.php";
include_once "../Librerias/Producto.php";
include_once "../Librerias/Variables.php";
$conn = new Datasource($dbhost, $dbName, $dbUser, $dbPassword);
$idartesano = $_POST["ID"];
$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 {
開發者ID:pablosanjuan,項目名稱:ManosDeOro,代碼行數:31,代碼來源:agregarProducto.php

示例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;
 }
開發者ID:pablosanjuan,項目名稱:ManosDeOro,代碼行數:25,代碼來源:Producto.php


注:本文中的Producto::setLink方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。