• 2024-03-06php7中的三元运算符的区别
    <?php$tmparr=['cover'=>'http://img.immomo.com.cn'];echoisset($tmparr['cover'])."\n";echo!empty($tmparr['cover'])."\n";$rep=isset($tmparr['cover'])&&!empty
  • 2023-05-26前端仿企查查、天眼查关联投资结构 股权结构 树形结构 控股结构
    快速实现前端仿企查查、天眼查关联投资结构股权结构树形结构控股结构,下载请访问uni-app插件市场:https://ext.dcloud.net.cn/plugin?id=12073效果图如下:  **html部分**<template><viewclass="content"><CCBCashTreev-if="(curTreeName.length>0)":treeName="cu
  • 2023-05-08微信公众号认证
    官网文档https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Access_Overview.htmlphp示例代码 publicfunctionindex(){$signature=$_GET["signature"]; $timestamp=$_GET["timestamp"]; $nonce=$_GET[&qu
  • 2023-02-12C# 特定byte字符截取字头字尾
    最近在使用tcp通讯,发现有时候会出现粘包的情况想个了方法在报文中添加字头字尾client接收到byte时候使用特定byte去截取写了个方法看明白之后byte字符等相互转换应
  • 2022-09-20js数组去重
    根据数组对象中某个属性去重letnewTags=tags.reduce(function(tmpArr,item){if(tmpArr.findIndex((tmp)=>tmp.name===item.name)===-1){