PHP
PHP.SEO
闲时写点PHP,SEO基础知识
展开
-
XML数据中使用PHP数组获取[@attributes]
1.想要获取结果如图:2.操作:使用attributes()获取,如图:3.结果:获取成功原创 2021-02-11 00:29:16 · 681 阅读 · 0 评论 -
php 处理XML数据simplexml_load_string使用实例
代码如下<?php$data = <<<XML<?xml version="1.0" encoding="UTF-8"?><dict> <key>百度</key> <pos></pos> <acceptation>2132</acceptation> <sent> <orig>百度一下</orig> <trans>原创 2021-01-24 04:08:03 · 343 阅读 · 0 评论 -
php 查看接口运行时间
代码<?php$start_time = microtime(true);for ($i=0;$i<100000000;$i++){};$end_time = microtime(true);echo '循环执行时间为:'.($end_time-$start_time).' s';原创 2021-01-18 22:22:37 · 511 阅读 · 0 评论 -
使用curl或file_get_contents抓取网页中文乱码
出现的问题解决办法 在curl函数配置参数中加这条代码 curl_setopt($ch, CURLOPT_ENCODING, "gzip");或者 file_get_contents函数加 file_get_contents("compress.zlib://".$url);原创 2020-12-15 18:59:04 · 199 阅读 · 0 评论 -
file_get_contents()或file(): SSL operation failed with code 1
问题:解决:file_get_contents()或file()加入如下代码$stream_opts = [ "ssl" => [ "verify_peer"=>false, "verify_peer_name"=>false, ]];$file = file('https://baidu.com',false,stream_context_create($stream_opts));...原创 2020-12-12 12:49:22 · 276 阅读 · 0 评论 -
tp5 a标签href跳转
问题:在a标签中直接加入网站<a href="www.kxxxxx.com"></a>结果如图原因:href跳转到一个相对路径,而不是绝对地址解决:添加http:// <a href="http://www.kxxxxx.com"></a>结果如图:OK原创 2020-06-23 18:50:05 · 1159 阅读 · 0 评论 -
PHP常用数组函数
http://blog.csdn.net/lbwo001/article/details/52778242###;转载 2018-01-08 14:11:21 · 264 阅读 · 0 评论 -
PHP 将两个一维数组合并到一个二维数组
1:需求2:代码3:结果OK原创 2018-01-05 11:33:08 · 5199 阅读 · 0 评论