header(“Content-Type:text/html;charset=utf-8″);
if (isset($_GET['number'])) {
$url = ‘http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx/getMobileCodeInfo';
$number = $_GET['number'];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, “mobileCode={$number}&userId=”);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);
$data = simplexml_load_string($data);
if (strpos($data, ‘http://')) {
echo ‘手机号码格式错误!';
} else {
echo $data;
}
}
?>
手机号码:
php 解决旧系统 查出所有数据分页的类
添加了几个自定义的从mysqlresult集合中抽取指定片段的方法,没有调用释放的原因这个涉及到程序的原来校验也多亏网上大神的帮助啊。。。。老系统害
关于UEditor编辑器远程图片上传失败的解决办法
远程图片上传是个很有意思的东西,比如你从别的网站复制一段文件,如果文字中带有图片,编辑器会自动将图片提取出来,进行上传,从而不用担心
Windows下部署Apache+PHP+MySQL运行环境实战
官方下载地址:MySQLhttp://www.mysql.com/downloads/mysql/找个MSI文件下下来.Apachehttp://httpd.apache.org/download.cgiPhphttp://windows.php.net/download/#php-5.4首先是MySQL,(这边