精明小懒猪

文章
7
资源
0
加入时间
3年2月3天

linux下php扩展xdebug的安装及远程xdebug调试

获取与php版本相匹配的xdebug安装包xdebug下载地址:https://xdebug.org/download.php补充说明:linux环境下载source,其余均为windows系统文件xdebug安装参照:https://blog.csdn.net/lyd518/article/details/8637872补充说明:xdebug.remote_host=window系统ip需新增一...

mysql用法汇总_MySQL函数大全及用法

1、字符串函数ascii(str)返回字符串str的第一个字符的ascii值(str是空串时返回0)mysql> select ascii('2');-> 50mysql> select ascii(2);-> 50mysql> select ascii('dete');-> 100ord(str)如果字符串str句首是单字节返回与ascii()函数返回的相同值...