诺基亚c6微信怎么样 某BBS上看到的回帖

11096人阅读
PHP基础知识(10)
本文主要讲述如何通过PHP+HTML简单实现BBS论坛和发帖/回帖的功能,这是提取我们php项目的部分内容。主要内容包括:
2.PHP如何定义类实现访问数据库功能
3.实现简单的BBS论坛和发帖/回帖功能
由于这个项目是十个人在寒假完成,所以采用了SAE搭建在线的后台数据库,其他人在通过Apache本地设计网页、访问数据库的方法实现,相当于简单的BS三端访问。
源码下载地址:
访问效果如下图所示:
一. 首页布局搭建
首先是搭建首页的布局,主要布局分为head、main_left和main_right。其中右边显示部分采用的是iframe实现的局部显示,而左边采用JavaScript实现点击隐藏和显示功能。其中index.php首页代码如下:&html&
&meta http-equiv="Content-Type" content="text/ charset=utf-8" /&
&title&《分布式系统》精品课程学习&/title&
href="css/mycss.css" type="text/css" rel="stylesheet"/&
&style type="text/css"&
/* 这个链接改变颜色 */
a.one:link {color: #ff0000}
a.one:visited {color: #0000ff}
a.one:hover {color: #ffcc00}
&!-- 布局顶部登录状态 --&
&div id="main"&
&TABLE cellSpacing=0 cellPadding=0 width="100%"
background="images/header_bg.gif" border=0&
&!--头部图片--&
&TR height=80&
&TD width=260&
&IMG height=80 src="images/logo.png" width=260&
&TD style="FONT-SIZE: 12 FONT-WEIGHT: COLOR: #000;
PADDING-TOP: 20 PADDING-RIGHT: 20px" align=right&
您还未登录! |
&A class="one" href="login.php" &登录&/A&|
&A class="one" href="register_student.php" &学生注册&/A&|
&A class="one" href="register_teacher.php" &教师注册&/A&
&TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&
&TR bgColor=#1c5db6 height=4&
&TD&&/TD&&/TR&
&!-- 布局中部 --&
&div id="middle"&
&!-- 布局中部右边 --&
&div id="index_right"&
&iframe height="100%" width="100%" border="0" frameborder="0"
src="main_right.php" name="rightFrame" id="rightFrame" title="rightFrame"&
&!-- 布局中部左边 --&
&div id="index_left"&
include('main_left.php');
这里的CSS代码布局调用css文件中的mycss.css实现:html, body {
height: '100%';
width: '100%';
/*头部布局*/
margin-left:200
/*中部布局*/
height:500
background-color:#b6
/*中部左边*/
#index_left{
margin-top:10
margin-left:10
height:480
/*中部右边*/
#index_right{
margin-top:10
margin-right:20
height:480
border-style:
/*中部右边*/
#logout_middle{
margin-top:100
margin-right:220
height:300
border-style:
background-color:#
在Iframe中主要的代码是&iframe src="main_right.php" name="rightFrame" id="rightFrame"&,调用时“&A href="main_right3-1.php" target="rightFrame"&BBS论坛&/A&”声明target为rightFrame即可。同时隐藏显示设置style.display为block或none。
其中main_left.php代码如下,此时即可实现上面的布局。&!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&
&HTML&&HEAD&
&META http-equiv=Content-Type content="text/ charset=utf-8"&
&LINK href="css/admin.css" type="text/css" rel="stylesheet"&
&SCRIPT language=javascript&
function expand(el) {
childObj = document.getElementById("child" + el);
if (childObj.style.display == 'none') {
childObj.style.display = 'block';
childObj.style.display = 'none';
&TABLE height="100%" cellSpacing=0 cellPadding=0 width=170
background=images/menu_bg.jpg border=0 align=left&
&TD vAlign=top align=middle&
&TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&
&TD height=10&&/TD&&/TR&
&!-- 第一选项 --&
&TABLE cellSpacing=0 cellPadding=0 width=150 border=0&
&TR height=30&
&TD style="PADDING-LEFT: 20 FONT-SIZE: 15px" background=images/menu_bt.jpg&
&A class=menuParent onclick=expand(1)
href="javascript:void(0);"&课程首页&/A&&/TD&&/TR&
&TR height=4&
&TD&&/TD&&/TR&
&TABLE id=child1 style="DISPLAY: none" cellSpacing=0 cellPadding=0
width=150 border=0&
&TR height=20&
&TD align=middle width=30&&IMG height=9
src="images/menu_icon.gif" width=9&&/TD&
&TD&&A href="main_right1-1.php"
target="rightFrame"&首页介绍&/A&&/TD&&/TR&
&TR height=4&
&TD colSpan=2&&/TD&&/TR&
&!-- 第二选项 --&
&TABLE cellSpacing=0 cellPadding=0 width=150 border=0&
&TR height=30&
&TD style="PADDING-LEFT: 20 FONT-SIZE: 15px" background=images/menu_bt.jpg&
&A class=menuParent onclick=expand(2)
href="javascript:void(0);"&课程概况&/A&&/TD&&/TR&
&TR height=4&
&TD&&/TD&&/TR&
&TABLE id=child2 style="DISPLAY: none" cellSpacing=0 cellPadding=0
width=150 border=0&
&TR height=20&
&TD align=middle width=30&&IMG height=9
src="images/menu_icon.gif" width=9&&/TD&
&TD&&A href="guest/main_right2-1.php"
target="rightFrame"&课程简介&/A&&/TD&&/TR&
&TR height=20&
&TD align=middle width=30&&IMG height=9
src="images/menu_icon.gif" width=9&&/TD&
&TD&&A href="guest/main_right2-2.php"
target="rightFrame"&教师团队&/A&&/TD&&/TR&
&TR height=20&
&TD align=middle width=30&&IMG height=9
src="images/menu_icon.gif" width=9&&/TD&
&TD&&A href="guest/main_right2-3.php"
target="rightFrame"&教学条件&/A&&/TD&&/TR&
&TR height=4&
&TD colSpan=2&&/TD&&/TR&
&!-- 第三选项 --&
&TABLE cellSpacing=0 cellPadding=0 width=150 border=0&
&TR height=30&
&TD style="PADDING-LEFT: 20 FONT-SIZE: 15px" background=images/menu_bt.jpg&
&A class=menuParent onclick=expand(3)
href="javascript:void(0);"&互动交流&/A&&/TD&&/TR&
&TR height=4&
&TD&&/TD&&/TR&
&TABLE id=child3 style="DISPLAY: block" cellSpacing=0 cellPadding=0
width=150 border=0&
&TR height=20&
&TD align=middle width=30&&IMG height=9
src="images/menu_icon.gif" width=9&&/TD&
&TD&&A href="main_right3-1.php"
target="rightFrame"&BBS论坛&/A&&/TD&&/TR&
&TR height=20&
&TD align=middle width=30&&IMG height=9
src="images/menu_icon.gif" width=9&&/TD&
&TD&&A href="main_right3-2.php"
target="rightFrame"&通知公告&/A&&/TD&&/TR&
&TR height=4&
&TD colSpan=2&&/TD&&/TR&
显示的效果如下:
二. 实现BBS论坛及回复
论坛主要通过自定义类database文件夹下Httppost.php实现,其中main_right3-1.php是显示所有BBS论坛帖子的主题,而main_right3-1-content.php是对应帖子的内容,包括回复内容等。
其中main_right3-1.php的代码如下:
header("Content-Type: text/ charset=utf-8");
//注意:include一个php文件不能重复,要递归检查是否重复引用
include ("../database/httppost.php");
&!-- 需要注意在Html中“..”表示回到上一级目录 而css与main_right3-1.php同级目录 --&
&link rel="stylesheet" href="css/main.css" type="text/css"
&TABLE cellSpacing=0 cellPadding=0 width="100%" align=center border=0&
&TR height=28&
&TD &当前位置: BBS论坛&/TD&
&TD align=right&&A href="main_right.php" class="one"& 返回 &/A&&/TD&
&TD bgColor=#b1ceef height=1 colspan="2"&&/TD&&/TR&
&TR height=10&
&TD background=images/shadow_bg.jpg colspan="2"&&/TD&&/TR&
&div class="middle"&
&div class="wrap"&
&div class="wrap_left"&
&div class="wenda-head"&
&a href="#" class="quealltab
onactive" &最新&/a&
&a href="#" class="quealltab " &热门&/a&
&a href="#" class="quealltab " &等待回复&/a&
$hgi=new HttpPostInf();
$result=$hgi-&doquery('2',"select * from BBS_P");
//解析json
$dj=json_decode($result,true);
$jcount=count($dj);
for($i=0; $i&$ $i++){
&div class="wenda-list"&
&div class="headslider"&
&img src='images/bbs3.jpg' class="wenda_list_head" width='40' height='40' /&
&a href="" title="name" class="wenda-nickname"&&?php echo $dj[$i]['BP_Pid']; ?&&/a&
&div class="qaslider"&
&li&&img src="images/bbs1.jpg" class="icon"/&&a
href="main_right3-1-content.php?bbsid=&?php echo $dj[$i]['BP_Pid']; ?&"
class="wendatitle"&&?php echo $dj[$i]['BP_Ptitle']; ?&&/a&&/li&
&li&&img src="images/bbs2.png" class="icon2"/&&span class="replydet"&发帖身份:
if($dj[$i]['BP_Ptype']==0) echo "教师";
if($dj[$i]['BP_Ptype']==1) echo "学生";
发帖人编号:
&?php echo $dj[$i]['BP_Puserid']; ?&&/span&&/li&
&li&&span class="time"&提问时间:&?php echo $dj[$i]['BP_Ptime']; ?&&/span&
&/div&&!--qaslider--&
&/div&&!--wenda-list--&
//结束循环
&/div&&!--wrap--&
&/div&&!--wrap_right--&
&/div&&!--middle--&
&TABLE cellSpacing=0 cellPadding=2 width="95%" align=center border=0 &
&TR height=20&
这里需要指出HTML代码"../database/httppost.php"中".."表示返回上一级目录,该代码的目录如下图所示,源代码放在Apache中htdocs文件夹中。
其中main_right3-1-content.php代码如下:&?php
header("Content-Type: text/ charset=utf-8");
include ("../database/human.php");
session_start();
&link rel="stylesheet" href="css/main.css" type="text/css"
&TABLE cellSpacing=0 cellPadding=0 width="100%" align=center border=0&
&TR height=28&
&TD background=images/title_bg1.jpg&当前位置: BBS论坛&/TD&
&TD align=right&&A href="main_right6-1.php" class="one"& 返回 &/A&&/TD&
&TD bgColor=#b1ceef height=1 colspan="2"&&/TD&&/TR&
&TR height=10&
&TD background=images/shadow_bg.jpg colspan="2"&&/TD&&/TR&
&!-- PHP数据库中获取内容 --&
$hgi=new HttpPostInf();
$result=$hgi-&doquery('2',"select * from BBS_Post where BP_Pid='".$_GET['bbsid']."';");
//解析json
$dj=json_decode($result,true);
$jcount=count($dj);
for($i=0; $i&$ $i++){
$_SESSION['bbsid']=$dj[$i]['BP_Pid'];
&div class="middle"&
&div class="wrap"&
&div class="wrap_left"&
&div class="wenda-head"&
&TABLE cellSpacing=0 cellPadding=0 width="100%" align=center border=0 bgcolor="blue"&
&TR height=10&
&TD&&/TD&&/TR&
&TR height=22&
&TD style="PADDING-LEFT: 10 FONT-WEIGHT: COLOR: #ffffff"
align=left&[贴] &?php echo $dj[$i]['BP_Ptitle']; ?&&/TD&&/TR&
&TR height=10&
&TD&&/TD&&/TR&
&!-- 楼主内容 --&
&TABLE cellSpacing=0 cellPadding=0 width="95%" align=center border=0&
&td valign="top"&&div align="middle" width=150&&BR /&&BR /&&img
src='images/tx.jpg' width='60' height='60' /&
&BR /&&BR /&楼主 1# &BR /&
&?php echo $dj[$i]['BP_Puserid']; ?&
&BR /&身份
if($dj[$i]['BP_Ptype']==0) echo "教师";
if($dj[$i]['BP_Ptype']==1) echo "学生";
?&&BR /&&?php echo $dj[$i]['BP_Ptime']; ?&&/div&&/td&
&!-- 多行文本输入控件 disabled="disabled"不可编辑 --&
&td &&textarea rows="15" type="text" width="400px" style="resize:font-size:16"
maxlength="2000" name="content" cols="60" disabled="disabled"&&?php echo $dj[$i]['BP_Cont']; ?&&/textarea&&/td&
&TR height=4&
&TD colspan="3"&&/TD&
&td colspan="2"&&hr width="100%" size="2" color="#FF0000"&&/td&
&!--上面的php中while循环并没有结束,还有右括号--&
$hgi=new HttpPostInf();
$result=$hgi-&doquery('2',"select * from BBS_Reply where BR_Pid='".$_GET['bbsid']."';");
//解析json
$dj=json_decode($result,true);
$jcount=count($dj);
for($i=0; $i&$ $i++){
&!-- 楼层回复内容 --&
&TABLE cellSpacing=0 cellPadding=0 width="95%" align=center border=0&
&td valign="top"&&div align="middle" width=150&&BR /&&BR /&
&img src='images/tx.jpg' width='60' height='60' /&
&BR /&&BR /&楼层 &?php $_SESSION['bbshfid']=time(); echo $i+2;?&# &BR /&
&?php echo $dj[$i]['BR_Ruserid']; ?&
&BR /&身份
if($dj[$i]['BR_Rtype']==0) echo "教师";
if($dj[$i]['BR_Rtype']==1) echo "学生";
&BR /&&?php echo $dj[$i]['BR_Ptime']; ?&
&BR /&回复楼层&?php echo $dj[$i]['BR_Pfloor']; ?&#&/div&&/td&
&!-- 多行文本输入控件 disabled="disabled"不可编辑 --&
&td &&textarea rows="15" type="text" width="400px" style="resize:font-size:16"
maxlength="2000" name="content" cols="60" disabled="disabled"&&?php echo $dj[$i]['BR_Cont']; ?&&/textarea&&/td&
&TR height=4&
&TD colspan="3"&
&td colspan="2"&&hr width="100%" size="2" color="#FF0000"&&/td&
&!-- 回复内容 --&
&form id="form1" name="form1" method="post" action="main_right3-1-content.php"&
&TABLE cellSpacing=0 cellPadding=0 width="95%" align=center border=0&
&td colspan="2"&
&input type="text" name="lc" id="lc" value="" style=width:150 maxlength="50"/&
&td valign="top"&&div align="middle" width=150&
&BR /&&BR /&
&BR /&&/div&&/td&
&!-- 多行文本输入控件 disabled="disabled"不可编辑 --&
&td &&textarea rows="10" type="text" width="400px" style="resize:font-size:16" maxlength="2000"
name="bbscontent" cols="60" &&/textarea&&/td&
&td colspan="2" align="middle"&
&input type="submit" style='font-size:22px' name="Submit" value="提交回复"/&
&TR height=4&&TD colspan="3"&&/TD&&/TR&
&td colspan="2"&&hr width="100%" size="2" color="#FF0000"&&/td&
&/div&&!--wrap--&
&/div&&!--wrap_right--&
&/div&&!--middle--&
&TABLE cellSpacing=0 cellPadding=2 width="95%" align=center border=0&
&TR height=20&
&TD&&/TD&&/TR&
&!-- 提交当前页面POST数据库表单处理 --&
if (!empty($_POST['bbscontent']))
if($_SESSION['radio']==1) $a=1; //学生
if($_SESSION['radio']==2) $a=0; //老师
$sql = "INSERT INTO BBS_Reply (BR_Rid,BR_Pid,BR_Ruserid,BR_Rtype,BR_Ptime,BR_Pfloor,BR_Cont) VALUES (";
$sql .= "'".$_SESSION['bbshfid']."',";
$sql .= "'".$_SESSION['bbsid']."',";
$sql .= "'".$_SESSION['number']."',";
$sql .= "'".$a."',";
$sql .= "'".date('Y-m-d')."',";
$sql .= "'".$_POST['lc']."',";
$sql .= "'".$_POST['bbscontent']."'";
$sql .= ");";
//更新信息
$hgi=new HttpPostInf();
$result=$hgi-&doquery('1',$sql);
//echo "&script&alert('恭喜你修改成功!');&/script&";
header('Location:main_right3-1.php');
发帖回复显示效果如下图所示:
发帖的代码就不贴出来了,可以查看源代码。写到此处可能你会疑惑数据库访问部分的内容,下面进行简单讲解吧!
三. PHP定义类及成员函数
在PHP中我们通常课程学习时完成的网站都是基于面向过程的方法,从而忽略了它的面向对象知识,我显然也犯了这样的错误。
PS:由于该项目是《面向对象分析与开发》课程作业,所以需要用面向对象的知识去分析和实现。突然有一天我发现PHP以前用的都是HTML和PHP布局后台实现的,没用用到类、封装、继承的知识,但查阅相关资料后发现它都是有这些东西的。
后来在实现这个项目过程中我们定义了不同的类(感谢PU哥),这里仅仅举例数据库方面和Human类。&?php
header("Content-Type: text/ charset=utf-8");
class HttpPostInf{
function __construct(){ //无参构造函数
function doquery($type , $sql){ //网路通信函数
$data = array ('sqlType' =& $type , 'sqlExe' =& $sql);
$data = http_build_query($data);
$opts = array ('http' =& array ('method' =& 'POST','header'=&
"Content-type: application/x-www-form-urlencoded\r\n" ."Content-Length: "
. strlen($data) . "\r\n",'content' =& $data));
$context = stream_context_create($opts);
$html = file_get_contents('http://courseweb.sinaapp.com/courseweb.php', false, $context);
同时定义Human类,而继承该类的Student和Teacher是两种身份的登陆用户。其中构造函数、实例化都已经在成员函数中写好。&?php
header("Content-Type: text/ charset=utf-8");
include_once("httppost.php");
//人类,拥有教师和学生的共同属性和方法
class Human{
private $ //唯一编号
private $ //密码
private $ //名字
private $ //性别
private $ //邮箱
function __construct(){ //无参构造函数
//静态验证函数
static function id_vf($id,$spwd,$type){ //类静态方法 type=1为学生,2为老师
$hpi=new HttpPostInf();
if($type==1)
$result=$hpi-&doquery('2',"select * from Student_Info where Sinf_id='".$id."';");
if($result =='error' || $result=='null'){ //返回无值
return -1; //没有用户,返回0
$dj=json_decode($result,true);
$jcount=count($dj);
for($i=0; $i&$ $i++){
//只有一个密码
$right_pwd=$dj[$i]['SInf_Pwd'];
//学生登录密码
if($spwd == $right_pwd) return 1;
//验证成功,可以登陆
else return 0;//密码错误
else if($type==2)
$result=$hpi-&doquery('2',"select * from Teacher_Info where TI_id='".$id."';");
if($result =='error' || $result=='null'){ //返回无值
return -1; //没有用户,返回0
$dj=json_decode($result,true);
$jcount=count($dj);
for($i=0; $i&$ $i++){
//只有一个密码
$right_pwd=$dj[$i]['TI_Pwd']; //学生登录密码
if($spwd==$right_pwd) return 1; //验证成功,可以登陆
else return 0;//密码错误
class Student extends Human{
private $ //出生日期
private $ //专业
private $ //入学年份
private $ //得分
function __construct($sid){ //1参构造函数
$this-&hid=$
$stu=new HttpPostInf();
$result=$stu-&doquery('2',"select * from Student_Info where Sinf_ID='".$sid."';");
//echo 'result:'.$
//解析json
$dj=json_decode($result,true);
$jcount=count($dj);
for($i=0; $i&$ $i++){
//只返回1个,所以只取一个即可,jcount=1
$this-&bir=$dj[$i]['SInf_Bir'];
$this-&maj=$dj[$i]['SInf_Maj'];
$this-&eym=$dj[$i]['SInf_Eym'];
$this-&score=$dj[$i]['SInf_Score'];
//或者写:$score=$dj-&Sinf_B
$this-&pwd=$dj[$i]['SInf_Pwd'];
$this-&name=$dj[$i]['SInf_Name'];
$this-&sex=$dj[$i]['SInf_Sex'];
$this-&email=$dj[$i]['SInf_Email'];
function getname(){return $this-&}
function getsex(){return $this-&}
function getemail(){return $this-&}
function getpwd(){return $this-&}
function getbir(){return $this-&}
function getmaj(){return $this-&}
function geteym(){return $this-&}
function getscore(){return $this-&}
class Teacher extends Human{
private $ //职称
function __construct($tid){ //1参构造函数
$this-&hid=$
$stu=new HttpPostInf();
$result=$stu-&doquery('2',"select * from Teacher_Info where TI_ID='".$tid."';");
//echo 'result:'.$
//解析json
$dj=json_decode($result,true);
$jcount=count($dj);
for($i=0; $i&$ $i++){
//只返回1个,所以只取一个即可,jcount=1
$this-&ptitle=$dj[$i]['TI_Ptitle'];
$this-&res=$dj[$i]['TI_Res'];
$this-&award=$dj[$i]['TI_Award'];
//或者写:$score=$dj-&Sinf_B
$this-&pwd=$dj[$i]['TI_Pwd'];
$this-&name=$dj[$i]['TI_Name'];
$this-&sex=$dj[$i]['TI_Sex'];
$this-&email=$dj[$i]['TI_Email'];
function getname(){return $this-&}
function getsex(){return $this-&}
function getemail(){return $this-&}
function getpwd(){return $this-&}
function getptitle(){return $this-&}
function getres(){return $this-&}
function getaward(){return $this-&}
再调用上面定义的类HttpPostInf和Human,实现访问数据库的简单代码如下所示:
$hgi=new HttpPostInf();
$result=$hgi-&doquery('2',"select * from BBS_P");//SQL语句
//解析json
$dj=json_decode($result,true);
$jcount=count($dj);
for($i=0; $i&$ $i++) {
echo $dj[$i]['BP_Pid'];
而当用户登录后会使用Session记录用户的id,然后通过类实例化即可实现获取该用户的所有信息,简单的代码如下:
$h1=new Student('');
echo $h1-&getname(); echo '&br&';
echo $h1-&getsex(); echo '&br&';
echo $h1-&getemail(); echo '&br&';
最后希望文章对大家有所帮助,尤其发现PHP方面搭建的文章比较少!相对多的文章是PHP关于某个细节处理,同时更希望大家学习下PHP类相关的知识。总感觉自己写博客有些问题,但自己说不出来,希望大家提出不足之处!该代码数据库是布局在SAE上的,所以直接运行可以出现上面所有图形的效果。
(By:Eastmount
【算法知识】
【C# .NET】
【游戏开发】
【Android】
【正能量&导师】
【图形&视频处理】
【各种知识】
【数据挖掘】
【.NET MF&嵌入式】
【架构&模式】
【操作系统】
【IOS开发】
【CSDN扫地僧】
文章:13篇
阅读:113923
文章:20篇
阅读:164056
文章:16篇
阅读:128288
文章:19篇
阅读:180863
文章:12篇
阅读:96195
文章:18篇
阅读:205548
文章:36篇
阅读:486409
文章:46篇
阅读:554260
文章:12篇
阅读:93945
文章:15篇
阅读:132827
阅读:2243AMOLED屏实惠Symbian^3 诺基亚C6-01评测
出处:pconline 原创&
作者:Chiugor
责任编辑:tangqunxing&
三、造型更为精致小巧1、整体外观  在整体外观上,和前两部Symbian^3机型有较大区别(应该说Symbian^3终端的造型都各有特色),-01更像是自家推出的第一部 V5机型更为相似,只不过在机身厚度上更加的薄。在色彩的选择上,推出了黑色和银灰色两款颜色,相信凭借着诺基亚的换色策略不排除在未来推出更多色彩缤纷的外观颜色供消费者选择。造型没有过多的亮点2、外观细节  虽然作为中低端机型,但在配备上诺基亚-01同样不输高端机型,屏幕上方除了放置支持视频通话的副摄像头外,还有距离感应器和光线调节器,能自动在通话时屏幕靠近脸部后自动锁定屏幕,同时光线调节器能在不同光线亮度条件下自动调节屏幕的亮度,有利于电量的节省。屏幕上方设计屏幕右侧从上到下分别为音量调节键、屏幕滑锁键和快门键  相比以往诺基亚机型都把插口放在了机身顶端,这次诺基亚C6-01走了相反路线把micro USB接口、标准3.5mm耳机插孔和诺基亚的小孔充电插口都放在了机身底端。数据线接口由于没有防尘盖,需要用户避免进入太多的尘埃影响数据的传输。机身下端设计  熟悉诺基亚的读者可能会奇怪一向配备的电源键这次在诺基亚C6-01上没有了,所以担当关机作用的按键集成在了挂断键上,可以看到屏幕下方的三个物理按键分别为拨号键、功能键和挂断键。正面实体按键  介绍完诺基亚C6-01在外光方面的细节,可以说诺基亚C6-01在外观设计方面还是符合其产品定位的,基本的接口与按键已经配备齐全,而诺基亚的移动终端一向在做工和质量方面都算不错,相信这也会成为消费者考虑入手诺基亚C6-01的因素之一。
键盘也能翻页,试试“← →”键
总排行榜我在第1563位
网友评分:3.5
Intel Inside 宝典
英特尔芯热销推荐热点活动 芯图片
10.39美元约¥65
1834.45元包邮(满减)
1114.61元包邮(满减)
2499元包邮(需用券)
115.76美元约¥727
54.87美元约¥345
手机热门文章
浏览本产品的网友还关注:
手机产品库今日论坛第 1 个签到,每日签到可得财富值+2,连续5天签到后再连续签到则每日可得财富值
+4,记得每天都来签到哦~
& 诺基亚C6论坛/C6-00论坛
欢迎加入NOKIA C6区一,新会员请仔细阅读及置顶帖 二,严禁发表含有政治、反动、不雅成分等违规文件三,严禁发布QQ群及其他联系方式和违规外链四,针对不同手机的对比、攻击帖一律关闭或删除五,求店求价格、二手交易等帖一律关闭或删除六,发现违规内容请勿回复,直接点击帖子右下角的“报告”八,其他未尽事宜,请参考
总置顶主题
财富值 5 塞班币]
微信扫一扫关注dospy整体来说诺基亚C6-01手机是很大,拿在手中还比较合适,金属机身小巧,Symban3兼容性和拓展性强,支持多点触控和多页面编辑,个性化十足,在强光下屏幕清晰可见;支持720p视频播放,娱乐性强,800万像素,成像清晰。评论  现在智能手机的功能都差不多,感觉自己想要的功能都有了:照相、QQ、邮箱及上网,触摸整体比较流畅,通话音质非常清晰,体积比想象中的稍大,拿在手中刚好。  诺基亚C6-01触屏反应也很好,wifi速度也很快,wap浏览和我的S9000差不多喇叭很响不比山寨机弱!  用的最烦人的一点就是打电话打着打着就挂了,不过后来找到窍门了一接电话,就顺便把键盘锁上就没出现过脸碰屏幕挂掉电话的情况了,还有就是有时候反应有点迟钝!  有一点要提的就是诺基亚C6-01在播放720P高清视频的时间有些视频播放到25分钟的时候,出现内存不足提示,并停止播放,无法得到解决,不知道是我一个人手机的问题还是其它所有人都有这样的问题!  诺基亚C6-01手机的屏幕太敏感。单手使用的时候手掌不小心就碰到右下角,还有就是手机挂件的地方不稳固,每次换电池都要重新装,并且手指头太大,屏幕太小,用模拟全键盘打字经常按错,所以只能用系统自带的打字(貌似这不是机器的缺点)!
还是挺喜欢这款手机的。
11:17:05 修改
我用的C6-00..不是01的.不是金属机身啊.电池很经用.玩2天没问题.但是很多软件用不了.声音有点小.放包里听不到来了电话没!很经摔,,,摔很多次都不坏.CPU发热也很好.不是很热.上网有点慢.不过用的话还是可以的.我是2011年4月份买的.1600块钱.感觉玩游戏很不方便,一下要用键盘.一下又要用触屏..搞来搞去的.
中低端的手机嘛
香港润信(RENCNY.&COM)诺基亚C6音乐版香港行货最低报价:1080元
您需要登录后才可以发帖
其他登录方式:}

我要回帖

更多关于 诺基亚c6 01 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信