一、数组操作的基本函数 数组的键名和值 <?php array_values($arr);  // 获得数组的值 array_keys($arr);  // 获得数组的键名 array_flip($arr);  // 数组中的值与键名互换(如果有重复前面的会被后面的覆盖) in_array("apple",$arr);  //&nb...
日期:2023-08-18 浏览:295次 评论: 0 阅读全文
需求描述: 有数个文件,包含图片,文档。需要根据条件自动打包成压缩包,提供下载。 解决(ZipArchive 类): PHP提供了ZipArchive 类可为我们实现这一功能,demo: <?php   $files = array('image.jpeg','text.txt','music.wav'); $zipname = 'enter_any_...
日期:2023-08-12 浏览:283次 评论: 0 阅读全文
二维码错误,显示乱码 在调用\QRcode::png($url); 后面加上 exit(); 二维码错误,图片显示异常    在调用\QRcode::png($url); 前面加上 header('Content-Type: image/png');ob_clean(); 完整代码
日期:2023-07-15 浏览:390次 评论: 0 阅读全文
function getClientMobileBrand() {     $agent = $_SERVER['HTTP_USER_AGENT'];     if (preg_match('/iPhone\s([^\s|;]+)/i', $agent, $regs)) {         $mobile_brand&nb...
日期:2023-07-04 浏览:550次 评论: 0 阅读全文
function get_user_os() {     //获取用户浏览信息参数     $agent = $_SERVER['HTTP_USER_AGENT'];     //获取操作系统类型     if (strpos($agent, "NT 10.0")) { &nbs...
日期:2023-07-04 浏览:401次 评论: 0 阅读全文
这篇文章将为大家详细讲解有关PHP如何利用curl发送HTTP请求,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。 cURL 函数概述 PHP支持的由Daniel Stenberg创建的libcurl库允许你与各种的服务器使用各种类型的协议进行连接和通讯。 libcurl目前支持http、https、ftp、gopher、telnet、...
日期:2023-06-24 浏览:359次 评论: 0 阅读全文
php实现对指定IP进行端口扫描 代码为 <html> <head> <meta http-equiv="Content-Type" content="text-html; charset=GBK" /> <title>IP port  Scan</title> <style type="text/css"> td{   ...
日期:2023-06-24 浏览:373次 评论: 0 阅读全文
1、htmlspecialchars() 转义特别的字符为HTML实体;     '&' (ampersand) becomes '&amp;'     '"' (double quote) becomes '&quot;' when ENT_NOQUOTES is&...
日期:2023-06-15 浏览:382次 评论: 0 阅读全文
htmlentities — Convert all applicable characters to HTML entities 说明string htmlentities ( string $string [, int $quote_style [, string $charset [, bool $double_encode]]] ) 也就是转义html标签的字符,类如&lt; &gt; 之类的 但是对于中文如果不指定第三个可选参数$charset的话,整个中文串都被转成...
日期:2023-06-15 浏览:372次 评论: 0 阅读全文
#测试网址:     http://localhost/blog/testurl.php?id=5   //获取域名或主机地址  echo $_SERVER['HTTP_HOST']." "; #localhost   //获取网页地址  echo $_SERVER['PHP_SELF']." "; #/blog/testurl.php...
日期:2023-06-15 浏览:355次 评论: 0 阅读全文