当前位置: 首页 > 2008年6月20日发布的所有文章
  • 如何在textarea中显示html代码

    XML/HTML代码          新建网页                                         内容                           document.getElementById(“txt”).appendChild(document.getE ...

    键盘游走者 发布于 2008-06-20 23:43php抢沙发
  • 这是一些使用频率比较高的php函数……

    1.产生随机字符串函数 function random($length) {  $hash = @#@#;  $chars = @#abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz@#;  $max = strlen($chars) – 1;  mt_srand((double)microtime() * 1000000);  for($i = 0; $i < $length; $i++) {   $hash .= $chars[mt_rand(0, $max)];  }  re ...

    键盘游走者 发布于 2008-06-20 21:01php抢沙发