当前位置: 编程技术>php
本页文章导读:
▪PHP取进制余数函数代码
代码如下: //取进制位上的数值 function getRemainder($num, $bin, $pos, &$result = 0){ //author lianq.net //$num 数值,十进制 //$bin 要转换的进制 //$pos 位数 $real_len = log($num, $bin);//对数,求原值长度 $floor_len = .........
▪用phpmailer实现简单openvpn用户认证的实现代码
现在每个人都有无数帐号密码, 难免记不住; 原理是通过 邮件服务器 pop 服务完成认证,也可以使用SMTP,并加SSL已提高安全性; 免去设置用户/密码麻烦,适合有自己邮件服务器的场合, 需要PHPMaile.........
▪PHP采集腾讯微博的实现代码
代码如下: <?php header("Content-type:text/html;charset=utf-8"); $weibo = file_get_contents('http://t.qq.com/starank'); $preg = '/<div >(.*)<\/div><div >/Uis'; preg_match_all($preg, $weibo, $string); foreach ($string[1] as $k.........
[1]PHP取进制余数函数代码
来源: 互联网 发布时间: 2013-11-30
代码如下:
//取进制位上的数值
function getRemainder($num, $bin, $pos, &$result = 0){
//author lianq.net
//$num 数值,十进制
//$bin 要转换的进制
//$pos 位数
$real_len = log($num, $bin);//对数,求原值长度
$floor_len = floor($real_len);//舍去求整
$base = pow($bin, $pos-1);//基数
$divisor = pow($bin,$pos);//除数
if($num >= $divisor){
$new_num = $num % pow($bin, $floor_len);
getRemainder($new_num, $bin, $pos, $result);
}else{
$result = floor($num / $base);
}
return $result;
}
//比如,数值16转换为9进制时,它的第一位上的数值是多少?
$a = getRemainder(16,9, 1);
echo $a;//输出7
[2]用phpmailer实现简单openvpn用户认证的实现代码
来源: 互联网 发布时间: 2013-11-30
现在每个人都有无数帐号密码, 难免记不住; 原理是通过 邮件服务器 pop 服务完成认证,也可以使用SMTP,并加SSL已提高安全性; 免去设置用户/密码麻烦,适合有自己邮件服务器的场合, 需要PHPMailer, 请自行google
PHP代码
<?php
require_once('class.phpmailer.php');
require_once('class.pop3.php');
$username = getenv('username');
$password = getenv('password');
$pop = new POP3();
$auth = $pop->Authorise('your.mailserver.com', 110, 30, "$username", "$password", 1);
if ($auth){
# echo OK;
exit(0);
} else {
# echo "FAIL";
exit(255);
}
?>
保存为 auth_user.php , 设置为 可执行
server.conf 直接
auth-user-pass-verify auth_user.php via-env
PHP代码
代码如下:
<?php
require_once('class.phpmailer.php');
require_once('class.pop3.php');
$username = getenv('username');
$password = getenv('password');
$pop = new POP3();
$auth = $pop->Authorise('your.mailserver.com', 110, 30, "$username", "$password", 1);
if ($auth){
# echo OK;
exit(0);
} else {
# echo "FAIL";
exit(255);
}
?>
保存为 auth_user.php , 设置为 可执行
server.conf 直接
auth-user-pass-verify auth_user.php via-env
[3]PHP采集腾讯微博的实现代码
来源: 互联网 发布时间: 2013-11-30
代码如下:
<?php
header("Content-type:text/html;charset=utf-8");
$weibo = file_get_contents('http://t.qq.com/starank');
$preg = '/<div >(.*)<\/div><div >/Uis';
preg_match_all($preg, $weibo, $string);
foreach ($string[1] as $key=>$value){
echo delhtml($value)."<br/><br/><br/>";
}
function delhtml($str) // 清除HTML标签
{
$st = -1; //开始
$et = -1; //结束
$stmp = array();
$stmp[] = " ";
$len = strlen($str);
for($i = 0;$i < $len;$i++)
{
$ss = substr($str, $i, 1);
if (ord($ss) == 60) // ord("<")==60
{
$st = $i;
}
if (ord($ss) == 62) // ord(">")==62
{
$et = $i;
if ($st != -1)
{
$stmp[] = substr($str, $st, $et - $st + 1);
}
}
}
$str = str_replace($stmp, "", $str);
return $str;
}
?>
最新技术文章: