本文整理汇总了PHP中MySql::fetcharray方法的典型用法代码示例。如果您正苦于以下问题:PHP MySql::fetcharray方法的具体用法?PHP MySql::fetcharray怎么用?PHP MySql::fetcharray使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MySql
的用法示例。
在下文中一共展示了MySql::fetcharray方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: iconv
$img_path = $img_path . $_FILES['file']['name'];
$target_path = ".." . $img_path;
$target_path = iconv("UTF-8", "gb2312", $target_path);
if (!move_uploaded_file($_FILES['file']['tmp_name'], $target_path)) {
echo $target_path;
echo "服务器保存文件失败";
} else {
chmod($target_path, 511);
$history = new History(null, $user, null, $img_path, null, null, null);
/**
* 插入
*/
$sql = $history->getInsertSql(TABLE_HISTORY, $user);
$mysql = new MySql();
$mysql->query($sql);
/**
* 查询
*/
$sql = "SELECT `id` FROM " . TABLE_HISTORY . " WHERE img='" . $img_path . "'";
$result = $mysql->query($sql);
$value = $mysql->fetcharray($result);
$history = History::getHistory($value);
echo $history->id;
/**
* 开启匹配程序
*/
$fp = fsockopen("localhost", 80);
fputs($fp, "GET /logodoctor/php/processCore.php?path={$target_path}\r\n\r\n");
fclose($fp);
}
}