240 发简信
IP属地:青海
  • php 通过反射,修改 Exception 实例的 message 属性

    通过查看 Exception 类的源码可以知道, $message 属性使用 protect 修饰, 且没有提供 setMessage 方法。对...

  • php curl debug

    curl 示例 这样就可以将 debug 内容写入 /tmp/curl_debug.log 文件, 其中 CURLOPT_VERBOSE, CU...

  • php 踩坑 PDO foreach bindParam

    官方文档 https://www.php.net/manual/zh/pdostatement.bindparam.php 注意: bindPa...

  • PDO bindParam 与 bindValue 的区别

    官方文档https://www.php.net/manual/zh/pdostatement.bindparam.phphttps://www....

  • JavaSE8 API Chrome自定义搜索

    打开 chrome://settings/searchEngines 添加 搜索引擎:JavaSE8 API 关键字:j 或 java 网址(用...

  • MySQL 组内排序

    在开发中经常遇到这样一类需求:取每种类型排名前几的数据。在此我简称它为组内排序。以下,我借鉴了别人的方法并添加自己的想法,就这类问题做一下理解:...