摘要:
报错: Catchable Fatal Error: Object of class App\Entity\ProjectType could not be converted to string 版本:symfony5.0 解决办法: 在对应的Entity里添加public __toString方 阅读全文
摘要:
通过前2字节判断: 编码16进制数unicodeFF FE 或 FE FFutf-8EF BB 代码: var fs=require('fs') fs.readFile('code.txt',function(err,buffer){ if(buffer[0]==0xff&&buffer[1]==0 阅读全文
摘要:
今天使用composer的时候得到了这个错误: The openssl extension is required for SSL/TLS protection but is not available 搜了一圈,基本都是说开启php.ini里的配置: extension=openssl # 同时, 阅读全文