易截截图软件、单文件、免安装、纯绿色、仅160KB

PHP向一个字符串随机添加文字

 很久前在baidu回答问题时写的“向一个字符串随机添加文字”的解决方案,可以支持中英文
<?php
/*********************************************************
 describe:字符串处理,可以处理中英文
 function:向一个字符串随机添加文字
 author:  etongchina
 email2me: etongchina@gmail.com
 time:    2008-06-24
 blog:    http://etongchina.blogcn.com

*********************************************************/
function getStrlen($str){
 $_count = array();
 $count = 0;
 for($count;$count<strlen($str);){
  ord($str{$i})>127?$count+=2:$count++;
  $_count[] = $count; //用数组存储可能插入的位置
 }
 $_key = array_rand($_count); //从数组中获取随机键
 return $_count[$_key];
}
$str = "伟大祖国繁荣富强"; //源字符串
$insert_str = "-";     //待添加的文字
$_rand = getStrlen($str);  //主函数
$_exp = "/^(.{".$_rand."})(.*)$/i"; //正则表达式
$t = preg_replace($_exp,"$1{$insert_str}$2",$str);
print $t;
?>


相关文档:

php收集

get_class_methods() // 所有方法   
get_included_files()//返回当前页所有加载的文件   
get_declared_classes()// 返回当前页所有class   
get_declared_interfaces()// 返回所有的接口   
get_defined_functions()// 返回所有的function &nb ......

利用Windows Schedule Task运行php程序

计划任务(Schedule Task)是windows平台上和cron类似的一个程序,当然功能上差了很多了。
因为需要每个小时运行一个PHP程序,手动操作不现实了。
首先在cmd下测试,例如: c:\appserv\php5\php.exe "C:\AppServ\www\temp2.php"
有一点要注意就是如果那个PHP引用了其他页面,需要提供绝对路径了,至少我的测试 ......

给PHP加速,eAccelerator配置和使用指南


Show All   1 2 3 4 5
本文由Michael原创和整理,转载请保留出处!http://www.toplee.com/blog/?p=100
Trackback URL: http://www.toplee.com/blog/wp-trackback.php?p=100
对于本文中出现的错误导致您的损失,Michael不承担责任。
前一段时间完成了服务器从FreeBSD4.10到6.1的升级,同时把PHP也升级到了最新的 ......

PHP页面分页函数

 很久前些的一些文章,那时候技术还在初级阶段,在现在看来代码够烂的,但是人总是一步步走上来的,希望能给初学者一点鼓励了!
<?php
/*********************************************************
 filename:multi.php
 describe: 显示多于一页的链接
 function:分页显示模块
 auth ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号