“最难不过坚持”
本人承接扒站仿站,php网站维护,病毒查杀,网站编辑,网站改版,html制作
有需要网站维护,改版,病毒查杀,网站编辑,网站备案,html制作等相关的工作可以联系我。
本人有多年相关工作经验,也可提供免费咨询,交个朋友。
有需要探讨问题的朋友,也可以加我微信,共同探讨!
微信:15011482830 QQ:408917339
- https://jueru.net/
-
- :weixiao:
-
- :shuijiao: :weiqu: :zhenbang: :leng:
-
- :yiwen: :yiwen: :yiwen: :yiwen:
-
- 这个业务逻辑多少都有点奇怪了,阅读浏览次数增值在新闻详情页的控制器方法里setInc,这怎么还写进模型事件里了。如果非要用onAfterRead也可以,把新闻文章的内容单独分出来一个news_content表,然后把它和news做关联,然后给news_content表的onAfterRead事件做增值处理,这样点进新闻页内查询到文章内容时才会触发它。
-
bin2hex() 函数
bin2hex() 函数把 ASCII 字符的字符串转换为十六进制值。字符串可通过使用 pack() 函数再转换回去。
语法bin2hex(string)
string 必需。要转换的字符串。
示例一
把 "Shanghai" 转换为十六进制值
<?php $str = bin2hex("Shanghai"); echo($str); // 5368616e67686169 ?>示例二
把一个字符串值从二进制转换为十六进制,再转换回去
<?php $str = "Shanghai"; echo bin2hex($str) . "<br>"; // 5368616e67686169 echo pack("H*",bin2hex($str)) . "<br>"; // Shanghai // H的意思 Hex string, high nibble first 转换成字符串,大写第一个字母 ?>pack() 函数
pack() 函数把数据装入一个二进制字符串。
语法
pack(format,args+)
format 必需。规定在包装数据时所使用的格式。
args+ 可选。规定被包装的一个或多个参数。
format 参数的可能值:
a - NUL-padded string
A - SPACE-padded string
h - Hex string, low nibble first
H - Hex string, high nibble first
c - signed char
C - unsigned char
s - signed short (always 16 bit, machine byte order)
S - unsigned short (always 16 bit, machine byte order)
n - unsigned short (always 16 bit, big endian byte order)
v - unsigned short (always 16 bit, little endian byte order)
i - signed integer (machine dependent size and byte order)
I - unsigned integer (machine dependent size and byte order)
l - signed long (always 32 bit, machine byte order)
L - unsigned long (always 32 bit, machine byte order)
N - unsigned long (always 32 bit, big endian byte order)
V - unsigned long (always 32 bit, little endian byte order)
f - float (machine dependent size and representation)
d - double (machine dependent size and representation)
x - NUL byte
X - Back up one byte
@ - NUL-fill to absolute position
示例一
<?php echo pack("C3",80,72,80); // PHP ?>示例二
<?php echo pack("C*",80,72,80); // PHP ?>