Where possible begins

希望你喜欢这里。有问题,请提问,或搜索现有帖子。

真诚、友善、团结、专业,共建你我引以为荣之社区。《常见问题解答》

子枫
子枫 [Rainy] 05-31 19:49

linux 查询占用的端口

开发调优

<p><span style="color: rgb(185, 189, 182); font-family: Monaco, Menlo, Consolas, &quot;Courier New&quot;, monospace; font-size: 13px; white-space: pre-wrap; background-color: rgb(27, 36, 38);">lsof -i:端口号</span></p>

250

子枫
子枫 [Rainy] 05-20 19:56

mysql 设置字段的默认值

开发调优

<p>设置表zf_user&nbsp; 的name字段的默认值为匿名<br/></p><pre class="brush:php;toolbar:false">ALTER&nbsp;TABLE&nbsp;zf_user&nbsp;ALTER&nbsp;COLUMN&nbsp;name&nbsp;SET&nbsp;DEFAULT&nbsp;&#39;匿名&#39;;</pre><p><br/></p>

235

子枫
子枫 [Rainy] 05-20 19:56

mysql 设置字段的默认值

开发调优

<p>设置表zf_user&nbsp; 的name字段的默认值为匿名<br/></p><pre class="brush:php;toolbar:false">ALTER&nbsp;TABLE&nbsp;zf_user&nbsp;ALTER&nbsp;COLUMN&nbsp;name&nbsp;SET&nbsp;DEFAULT&nbsp;&#39;匿名&#39;;</pre><p><br/></p>

242

子枫
子枫 [Rainy] 05-08 13:36

h5跳转到微信公众号关注页面

开发调优

<p><br/></p><p>扫码进入公众号</p><p>打开查看网页源代码</p><p>搜索找到</p><p><img src="http://oss1.wangmingchang.com/mac/MdImd/20220508133457.png" title="1651988088176048.png" alt="image.png" width="1003" height="427" style="width: 1003px; height: 427px;"/></p><p><br/></p><p>然后base64加密 这个数字&nbsp; 得到&nbsp;MzAxMzMxNjIxNA==</p><p>加入链接得到:&nbsp; &nbsp;<a href="https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzAxMzMxNjIxNA==#wechat_redirect" _src="https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzAxMzM

231

子枫
子枫 [Rainy] 04-30 21:09

js 字符和数组的转化

开发调优

<pre class="brush:php;toolbar:false"> &nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;array=&nbsp;[{111},{222},{333}]&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;//将数组对象转为字符串数组 &nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;arrayStr&nbsp;=&nbsp;JSON.stringify(array)&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;//将数组字符串转为数组对象 &nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;array&nbsp;=&nbsp;JSON.parse(arrayStr)</pre><p><br/></p>

244

子枫
子枫 [Rainy] 04-25 16:46

php验证邮箱

开发调优

<pre class="brush:php;toolbar:false">&nbsp;if&nbsp;(!filter_var($data[&#39;email&#39;],FILTER_VALIDATE_EMAIL))&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;jserror(&#39;Email&nbsp;address&nbsp;is&nbsp;incorrect.&nbsp;&#39;); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</pre><p><br/></p>

238

鬼兔
鬼兔 普通用户 04-24 21:02

为什么这个代码只有html的部分,不完整啊

子枫cmsX2

<p><img src="/public/upload/image/20220424/1650805299942727.png" title="1650805299942727.png" alt="0793519f05213991b3f157ef0bd9827264801dafbee73ba1ebbf81e9186d50c4QzpcVXNlcnNcQVNVU1xBcHBEYXRhXFJvYW1pbmdcRGluZ1RhbGtcMTI1ODMwMjE3NV92MlxJbWFnZUZpbGVzXDE2NTA4MDUyMjIzNDFfODI2OEI5RjQtQTQ0RS00YzJjLTkzQUEtNDg4QkRBRjkwNDE3LnBuZw==.png"/></p>

329

子枫
子枫 [Rainy] 04-21 15:23

mysql替换内容的指定字符

开发调优

<pre class="brush:php;toolbar:false">update&nbsp;`table`&nbsp;set&nbsp;content=replace(content,&#39;要替换的字符&#39;,&#39;替换后的字符&#39;);</pre><p><br/></p>

241

子枫
子枫 [Rainy] 04-18 14:09

二维数组按指定的键值排序

开发调优

<pre class="brush:php;toolbar:false">/* function:二维数组按指定的键值排序 */ function&nbsp;array_sort($array,$keys,$type=&#39;asc&#39;){ if(!isset($array)&nbsp;||&nbsp;!is_array($array)&nbsp;||&nbsp;empty($array)){ return&nbsp;&#39;&#39;; } if(!isset($keys)&nbsp;||&nbsp;trim($keys)==&#39;&#39;){ return&nbsp;&#39;&#39;; } if(!isset($type)&nbsp;||&nbsp;$type==&#39;&#39;&nbsp;||&nbsp;!in_array(strtolower($type),array(&#39;asc&#39;,&#39;desc&#39;))){ return&nbsp;&#39;&#39;; } $keysvalue=array(); f

295

子枫
子枫 [Rainy] 04-12 11:06

ueditor dl自动转成了ul

开发调优

<h4 style="box-sizing: border-box; outline: 0px; margin: 8px 0px 16px; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, SimHei, Arial, SimSun; font-size: 18px; color: rgb(79, 79, 79); line-height: 26px; overflow-wrap: break-word; font-variant-ligatures: no-common-ligatures; white-space: normal; background-color: rgb(255, 255, 255);">1.找到ueditor.config.js文件</h4><pre class="brush:php;toolbar:false">//&nbsp;将下面3个参数值改为false //&nbsp;xss&nbsp;过滤是否开启,inserthtml等操作 ,x

236

子枫
子枫 [Rainy] 04-11 14:17

apache 开启伪静态

开发调优

<p>apache2的默认站点主目录:/var/www/html/</p><p>以下皆使用root权限运行</p><p><br/></p><p>1.加载rewrite模块</p><p>ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/rewrite.load</p><p><br/></p><p>2.apache2主配置文件修改</p><p>默认主配置文件位置为/etc/apache2/apache2.conf</p><p>将/etc/apache2/apache2.conf中所有&lt;Directory&gt;&lt;/Directory&gt;之间的</p><p>AllowOverride None将None改为All</p><p><br/></p><p>3.在网站的目录下建立.htaccess文件</p><p>.htaccess文件内容如下</p><pre class="brush:php;toolbar:false">&lt;IfModule&nbsp;mod_rewrite.c&g

201

子枫
子枫 [Rainy] 04-11 14:07

apache2 修改默认php版本

开发调优

<div style="font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(255, 255, 255);"><div><div>将php7.0 升级未php7.3</div></div></div><div style="font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(255, 255, 255);"><div><div class="post" styl

267

子枫
子枫 [Rainy] 04-08 11:47

小程序中封装base64

开发调优

<p>未测试</p><p><br/></p><p><a href="https://www.cnblogs.com/linsx/p/9255870.html" _src="https://www.cnblogs.com/linsx/p/9255870.html">https://www.cnblogs.com/linsx/p/9255870.html</a> </p><p><br/></p>

240

子枫
子枫 [Rainy] 04-08 10:44

ueditor li下span被过滤

开发调优

<p><br/></p><p><span style="box-sizing: border-box; outline: 0px; font-weight: 700; overflow-wrap: break-word; color: rgb(77, 77, 77); font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; background-color: rgb(255, 255, 255);">ueiter.all.js</span><span style="color: rgb(77, 77, 77); font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;

214

子枫
子枫 [Rainy] 04-07 11:58

phpinfo() 查询是否支持伪静态

开发调优

<p>PHP 通过phpinfo查询是否支持伪静态</p><pre class="brush:php;toolbar:false">&lt;?php echo&nbsp;phpinfo();</pre><p><br/></p><p>然后访问找到&nbsp;<span style="color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, 微软雅黑, arial, 宋体, sans-serif; text-align: justify; background-color: rgb(255, 255, 255);">Loaded Modules 模块</span></p><p><img src="https://exp-picture.cdn.bcebos.com/a1780d1fceecd3d94c08957167995943050108d6.jpg?x-bce-process=image%2Fresize%2Cm_lfit%2Cw_500%2Climit_1%2Fquality%2Cq_80" alt="PHP

334