本文整理汇总了PHP中SmrMySqlDatabase::getInsertID方法的典型用法代码示例。如果您正苦于以下问题:PHP SmrMySqlDatabase::getInsertID方法的具体用法?PHP SmrMySqlDatabase::getInsertID怎么用?PHP SmrMySqlDatabase::getInsertID使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SmrMySqlDatabase
的用法示例。
在下文中一共展示了SmrMySqlDatabase::getInsertID方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: realpath
<?php
try {
echo '<pre>';
// global config
require_once realpath(dirname(__FILE__)) . '/../../htdocs/config.inc';
// bot config
require_once TOOLS . 'npc/config.specific.php';
// needed libs
require_once LIB . 'Default/SmrMySqlDatabase.class.inc';
require_once LIB . 'Default/Globals.class.inc';
$db = new SmrMySqlDatabase();
debug('Script started');
define('SCRIPT_ID', $db->getInsertID());
$db->query('UPDATE npc_logs SET script_id=' . SCRIPT_ID . ' WHERE log_id=' . SCRIPT_ID);
define('NPCScript', true);
$descriptorSpec = array(0 => array("pipe", "r"), 1 => array("pipe", "w"));
$engine = proc_open(UCI_CHESS_ENGINE, $descriptorSpec, $pipes);
$toEngine =& $pipes[0];
$fromEngine =& $pipes[1];
function readFromEngine($block = true)
{
global $fromEngine;
stream_set_blocking($fromEngine, $block == true ? 1 : 0);
while (($s = fgets($fromEngine)) !== false) {
debug('<-- ' . trim($s));
stream_set_blocking($fromEngine, 0);
}
}
function writeToEngine($s, $block = true, $read = true)
{