A-A+

PHP,MYSQL常见问题与解答

2009年01月03日 未分类 暂无评论 阅读 1 次
  • 决定是否将 EGPCS(Environment,GET,POST,Cookie,Server)变量注册为全局变量。例如,如果 register_globals = on,那么 URL http://www.21pt.com/test.php?id=3 将产生 $id。或者从 $_SERVER['DOCUMENT_ROOT'] 得来 $DOCUMENT_ROOT。如果不想用户数据把全局域弄乱的话可以将此选项关闭。自 PHP 4.2.0 开始,本指令默认为 off。推荐使用 PHP 的预定义变量来替代,例如超全局变量:$_ENV,$_GET,$_POST,$_COOKIE 和 $_SERVER。
  •  

    ===> 一个写文本数据的函数,可以有效防止清零
    自己用在计数器中,在linux下日ip8万没有发现清零的现象

     

    CODE
    1. <?php
    2. // Write Something to a Text
    3. function writetofile($filename,$data,$method="rb+"){
    4.   touch($filename);
    5.   $handle=fopen($filename,$method);
    6.   flock($handle,LOCK_EX);
    7.   $fettle=fwrite($handle,$data);
    8.   if($method=="rb+"){ftruncate($handle,strlen($data));}
    9.   fclose($handle);
    10.   return $fettle;
    11. }
    12. //test
    13. writetofile("test.txt","Some data!");
    14. ?>

     

    ===> Client does not support authentication protocol
    好多朋友升级了mysql为4.10以上会发生此错误,php4.x下phpmyadmin之类的程序连接不上数据库,是因为mysql4.10以上改变了用户密码验证协议,php的连接模块也需要更换新的,php5默认就是这种新的连接模块...

    不想更换可以这样:

    CODE
    1. # SET PASSWORD FOR 'some_user'@'some_host' = OLD_PASSWORD('newpwd');
    2. # FLUSH PRIVILEGES;

    官方说明文档:

    CODE
    1. Client does not support authentication protocol
    2. MySQL 4.1 and up uses an authentication protocol based on a password hashing algorithm that is incompatible with that used by older clients. If you upgrade the server to 4.1, attempts to connect to it with an older client may fail with the following message:
    3.  
    4. shell> mysql
    5. Client does not support authentication protocol requested
    6. by server; consider upgrading MySQL client
    7.  
    8. To solve this problem, you should use one of the following approaches:
    9.  
    10. Upgrade all client programs to use a 4.1.1 or newer client library.
    11.  
    12. When connecting to the server with a pre-4.1 client program, use an account that still has a pre-4.1-style password.
    13.  
    14. Reset the password to pre-4.1 style for each user that needs to use a pre-4.1 client program. This can be done using the SET PASSWORD statement and the OLD_PASSWORD() function:
    15.  
    16. mysql> SET PASSWORD FOR
    17.    -> 'some_user'@'some_host' = OLD_PASSWORD('newpwd');
    18.  
    19. Alternatively, use UPDATE and FLUSH PRIVILEGES:
    20.  
    21. mysql> UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd')
    22.    -> WHERE Host = 'some_host' AND User = 'some_user';
    23. mysql> FLUSH PRIVILEGES;
    24.  
    25. Substitute the password you want to use for ``newpwd'' in the preceding examples. MySQL cannot tell you what the original password was, so you'll need to pick a new one.
    26.  
    27. Tell the server to use the older password hashing algorithm:
    28.  
    29. Start mysqld with the --old-passwords option.
    30.  
    31. Assign an old-format password to each account that has had its password updated to the longer 4.1 format. You can identify these accounts with the following query:
    32.  
    33. mysql> SELECT Host, User, Password FROM mysql.user
    34.    -> WHERE LENGTH(Password) > 16;
    35.  
    36. For each account record displayed by the query, use the Host and User values and assign a password using the OLD_PASSWORD() function and either SET PASSWORD or UPDATE, as described earlier.

     

    ===> 如果在数字前面强制加0
    格式化数字的位数,未满位的加前导0

     

    CODE
    1. <?php
    2. $num = 12;
    3. $var = sprintf("%09d", $num);
    4. echo $var;
    5. ?>

     

    ===> 取得当前脚本的路径
    请不要用 $_SERVER['PHP_SELF']取路径,$_SERVER['PHP_SELF']取出来的在某些情况下是错误的.也不要用$_SERVER['SERVER_NAME'],$_SERVER['SERVER_NAME']取得的主机名不包含端口号,而且有时候取得的是服务器名,非你的虚拟主机名.
    脚本路径:

     

    CODE
    1. <?php
    2. $url = 'http://'.dirname($_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME']).'/';
    3. ?>

     


    地址栏信息:

     

    CODE
    1. <?php
    2. $url = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
    3. ?>

     

    ===> url传递参数需要这样编码
    与 HTML 实体相匹配的变量。像 &amp、&copy 和 &pound 都将被浏览器解析,并使用实际实体替代所期待的变量名。解决办法是使用 &amp; 代替 & 作为分隔符。使用 htmlentities(urlencode($data)) 对你的 URL 进行编码。

     

    CODE
    1. <?php
    2. echo "<a href='filename.php?par=" . htmlentities(urlencode($parameter)) . "'>";
    3. ?>

     


    接受页面直接使用,不需要解码.

    ===> 数据存入MySQL需要注意
    入库:

     

    CODE
    1. <?php
    2. $str = addslashes($str);
    3. ?>

     


    出库:

     

    CODE
    1. <?php
    2. $str = stripslashes($str);
    3. ?>

     

    ===> 返回MySQL数据库上一步 INSERT 操作产生的 ID
    mysql_insert_id() 返回给定的 link_identifier 中上一步 INSERT 查询中产生的 AUTO_INCREMENT 的 ID 号。如果没有指定 link_identifier,则使用上一个打开的连接。

     

    CODE
    1. <?php
    2. $last_id = mysql_insert_id();
    3. ?>

     

    ===> 如何解决表单出错返回从填的时候以前填写的东西全部消失
    因为使用了session,可以用session_cache_limiter强制数据流从新生效.

     

    CODE
    1. <?php
    2. // session start
    3. session_cache_limiter("private, must-revalidate");
    4. session_start();
    5. ...
    6. ?>

     

    ===> 如何一劳永逸的解决Cannot send session cache limiter - headers already sent 这种错误
    当用header()转向或者session_start()之前有输出,会有Cannot send session cache limiter - headers already sent的错误,可以用ob_start(),这样会在页面全部执行完毕才输出.

     

    CODE
    1. <?php
    2. session_start();
    3. ob_start();
    4. ...
    5. ?>

     

    ===> 如何表单填写错误时返回后以前填写的内容消失?
    当使用session后会出现这种情况,我们可以使用session_cache_limiter();强制生效.

     

    CODE
    1. <?php
    2. session_cache_limiter("private, must-revalidate");
    3. session_start();
    4. ...
    5. ?>

     

    ===> 判断邮件地址是否合法!
    判断邮件地址是否合法!

     

    CODE
    1. <?php
    2. if(!ereg("^[-a-zA-Z0-9_.]+@([0-9A-Za-z][0-9A-Za-z-]+.)+[A-Za-z]{2,3}$",$mail_from)){
    3.   echo "<script>alert('E-mail Error!');location.replace('javascript:history.back(1)');</script>";
    4.   exit;
    5. }
    6. ?>

     

    ===> 数组存储到MySQL数据库
    数组存储到mysql中要用serialize() 产生一个可存储的值

     

    CODE
    1. <?php
    2. $array_in = serialize($data);
    3. ...
    4. ?>

     


    出库时

     

    CODE
    1. <?php
    2. ...
    3. $array_out = unserialize($data);
    4. ?>

     

    ===> 取来源页面地址
    如果是通过<script language="javascript" src="filename.php"></script>调用,取到的只是filename.php,而非来源页面.这时候可以用js来取.

     

    CODE
    1. <?php
    2. echo $_SERVER['HTTP_REFERER'];
    3. ?>

     

    ===> 实现任意文件的下载
    用header可以实现任意文件的下载,而不是打开,比如txt和图片等.自己找一下Content-type,根据相应的类型替换就可以了.

     

    CODE
    1. <?php
    2. // We'll be outputting a gif
    3. header('Content-type: image/gif');
    4. // It will be called pic.gif
    5. header('Content-Disposition: attachment; filename="pic.gif"');
    6. // The gif source is in pic.gif
    7. readfile('pic.gif');
    8. ?>

     

    ===> 为什么 $foo[bar] 错了?[摘自php手册]
    应该始终在用字符串表示的数组索引上加上引号。例如用 $foo['bar'] 而不是 $foo[bar]。但是为什么 $foo[bar] 错了呢?你可能在老的脚本中见过如下语法:

     

    CODE
    1. <?php
    2. $foo[bar] = 'enemy';
    3. echo $foo[bar];
    4. // etc
    5. ?>

     


    这样是错的,但可以正常运行。那么为什么错了呢?原因是此代码中有一个未定义的常量(bar)而不是字符串('bar'-注意引号),而 PHP 可能会在以后定义此常量,不幸的是你的代码中有同样的名字。它能运行,是因为 PHP 自动将裸字符串(没有引号的字符串且不对应于任何已知符号)转换成一个其值为该裸字符串的正常字符串。例如,如果没有常量定义为 bar,PHP 将把它替代为 'bar' 并使用之。
    注: 这并不意味着总是给键名加上引号。用不着给键名为常量 或 变量 的加上引号,否则会使 PHP 不能解析它们。

    ===> 刚写了一个用MySQL保存图片和取出图片的例子 
    方法并不可取,因为保存图片的数据量是很大的,对宝贵的数据库资源太浪费,可以将图片存储到目录中,用数据库存储路径和文件名.

    Database table:

    CODE
    1. CREATE TABLE `image_table` (
    2.  `id` int(4) NOT NULL auto_increment,
    3.  `image` blob NOT NULL,
    4.  PRIMARY KEY  (`id`)
    5. ) TYPE=MyISAM;

    上传图片存储到MySQL:

    CODE
    1. <?php
    2. // pic_database_upload.php By Bleakwind
    3. $Host     = "localhost";
    4. $User     = "bleakwind";
    5. $Password = "bleakwind";
    6. $Database = "test";
    7.  
    8. mysql_connect($Host,$User,$Password) or die("Could not connect:" . mysql_error());
    9. mysql_select_db($Database) or die("Could not select database!");
    10.  
    11. if(!empty($_FILES['image']['name'])){
    12.   $image_data = addslashes(fread(fopen($_FILES['image']['tmp_name'], "rb"), filesize($_FILES['image']['tmp_name'])));
    13.   $sql = "INSERT INTO `image_table` (`image`) VALUES ('".$image_data."')";
    14.   if(mysql_query($sql)){ echo "成功!"; }else{ echo "失败!"; }
    15. }
    16. ?>
    17.  
    18. <form action="" method="post" name="form" enctype="multipart/form-data">
    19. <input type="file" name="image" size="30">
    20. <input type="submit" value="Upload">
    21. </form>

    从数据库中取出图片.
    注意:
    1.可能具体应用你还要分配一个字段来存储图片类型,这样下面的header( "content-type: image/gif");这句的gif用相应的类型替换掉.
    2.如果想取出多个图片可以将下面的文件存成一个文件,在另外的文件遍历ID后调用此文件输出.

    CODE
    1. <?php
    2. // pic_database_output.php By Bleakwind
    3. header( "content-type: image/gif");
    4. $Host     = "localhost";
    5. $User     = "bleakwind";
    6. $Password = "bleakwind";
    7. $Database = "test";
    8. $id       = 1;
    9.  
    10. mysql_connect($Host,$User,$Password) or die("Could not connect:" . mysql_error());
    11. mysql_select_db($Database) or die("Could not select database!");
    12.  
    13. $sql    = "SELECT * FROM `image_table` WHERE `id`=" . $id;
    14. $result = mysql_query($sql) or die("Could not perform query!");
    15. $row    = mysql_fetch_array($result);
    16. echo $row['image'];
    17. ?>

    给我留言

    Copyright © 浩然东方 保留所有权利.   Theme  Ality 07032740

    用户登录