-
phpMyAdmin自动登录脚本
用POST方式传值(服务器,端口,用户,密码),实现自动登录,一般用于多MYSQL服务器管理.<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htm...
https://www.befen.net/opensource/phpMyAdmin-auto-login.html 分类:开源代码 日期:2012-11-10
-
PHP SMTP发送邮件函数
$bfconfig=Array('sitename'=>'网站名称',);$mail=Array('state'=>1,'server'=>'smtp.abc.com','port'=>25,'auth'=>1,'username'=>'admin@abc.com','password'=>'123456','charset'=>'gbk...
https://www.befen.net/opensource/php-smtp-mail.html 分类:开源代码 日期:2012-11-02
-
自己用的备案查询接口开放
functioncheckICP($url='',$type=''){$url=trim($url);if(empty($url)){return;}$htmltext=file_get_contents('http://api.befen.net/icp/'.$url);if(empty($htmltext)){return;}if($type=='all'){return$h...
https://www.befen.net/opensource/beian-chaxun-api.html 分类:开源代码 日期:2012-10-31
-
PHP截取字符串(加强版,兼容GBK和UTF8)
functionhtmlencode($string){if(is_array($string)){foreach($stringas$key=>$val){$string[$key]=htmlencode($val);}}else{$string=preg_replace('/&((#(\d{3,5}|x[a-fA-F0-9]{4})|[a-zA-Z][a-z0-9]{2,5});...
https://www.befen.net/opensource/php-cut-string.html 分类:开源代码 日期:2012-10-30
-
PHP转换字符串编码
functionphpcharset($data,$to){if(is_array($data)){foreach($dataas$key=>$val){$data[$key]=phpcharset($val,$to);}}else{$encode_array=array('ASCII','UTF-8','GBK','GB2312','BIG5');$encoded=mb_d...
https://www.befen.net/opensource/php-charset.html 分类:开源代码 日期:2012-10-30