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


PHP Iface::getRequest方法代碼示例

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


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

示例1: saveItem


//.........這裏部分代碼省略.........
              * @since 2014.03
              * @category Developer
              * @see madmin/log/manager/standard/update/ansi
              * @see madmin/log/manager/standard/newid/ansi
              * @see madmin/log/manager/standard/delete/ansi
              * @see madmin/log/manager/standard/search/ansi
              * @see madmin/log/manager/standard/count/ansi
              */
             $path = 'madmin/log/manager/standard/insert';
         } else {
             /** madmin/log/manager/standard/update/mysql
              * Updates an existing log record in the database
              *
              * @see madmin/log/manager/standard/update/ansi
              */
             /** madmin/log/manager/standard/update/ansi
              * Updates an existing log record in the database
              *
              * Items which already have an ID (i.e. the ID is not NULL) will
              * be updated in the database.
              *
              * The SQL statement must be a string suitable for being used as
              * prepared statement. It must include question marks for binding
              * the values from the log item to the statement before they are
              * sent to the database server. The order of the columns must
              * correspond to the order in the saveItems() method, so the
              * correct values are bound to the columns.
              *
              * The SQL statement should conform to the ANSI standard to be
              * compatible with most relational database systems. This also
              * includes using double quotes for table and column names.
              *
              * @param string SQL statement for updating records
              * @since 2014.03
              * @category Developer
              * @see madmin/log/manager/standard/insert/ansi
              * @see madmin/log/manager/standard/newid/ansi
              * @see madmin/log/manager/standard/delete/ansi
              * @see madmin/log/manager/standard/search/ansi
              * @see madmin/log/manager/standard/count/ansi
              */
             $path = 'madmin/log/manager/standard/update';
         }
         $stmt = $this->getCachedStatement($conn, $path);
         $stmt->bind(1, $siteid, \Aimeos\MW\DB\Statement\Base::PARAM_INT);
         $stmt->bind(2, $item->getFacility());
         $stmt->bind(3, date('Y-m-d H:i:s'));
         $stmt->bind(4, $item->getPriority(), \Aimeos\MW\DB\Statement\Base::PARAM_INT);
         $stmt->bind(5, $item->getMessage());
         $stmt->bind(6, $item->getRequest());
         if ($item->getId() !== null) {
             $stmt->bind(7, $item->getId(), \Aimeos\MW\DB\Statement\Base::PARAM_INT);
             $item->setId($id);
         }
         $stmt->execute()->finish();
         if ($id === null && $fetch === true) {
             /** madmin/log/manager/standard/newid/mysql
              * Retrieves the ID generated by the database when inserting a new record
              *
              * @see madmin/log/manager/standard/newid/ansi
              */
             /** madmin/log/manager/standard/newid/ansi
              * Retrieves the ID generated by the database when inserting a new record
              *
              * As soon as a new record is inserted into the database table,
              * the database server generates a new and unique identifier for
              * that record. This ID can be used for retrieving, updating and
              * deleting that specific record from the table again.
              *
              * For MySQL:
              *  SELECT LAST_INSERT_ID()
              * For PostgreSQL:
              *  SELECT currval('seq_malog_id')
              * For SQL Server:
              *  SELECT SCOPE_IDENTITY()
              * For Oracle:
              *  SELECT "seq_malog_id".CURRVAL FROM DUAL
              *
              * There's no way to retrive the new ID by a SQL statements that
              * fits for most database servers as they implement their own
              * specific way.
              *
              * @param string SQL statement for retrieving the last inserted record ID
              * @since 2014.03
              * @category Developer
              * @see madmin/log/manager/standard/insert/ansi
              * @see madmin/log/manager/standard/update/ansi
              * @see madmin/log/manager/standard/delete/ansi
              * @see madmin/log/manager/standard/search/ansi
              * @see madmin/log/manager/standard/count/ansi
              */
             $path = 'madmin/log/manager/standard/newid';
             $item->setId($this->newId($conn, $path));
         }
         $dbm->release($conn, $dbname);
     } catch (\Exception $e) {
         $dbm->release($conn, $dbname);
         throw $e;
     }
 }
開發者ID:aimeos,項目名稱:aimeos-core,代碼行數:101,代碼來源:Standard.php


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