homestead+phpstorm xdebug

编辑php环境的debug,添加xdebug.idekey= PHPSTORMvi /etc/php/7.3/fpm/conf.d/20-xdebug.inizend_extension=xdebug.so xdebug.mode = debug xdebug.discover_client_host = true xdebug.client_port = 9003 xdebug.max_nest

- 阅读全文 -

php htlm修复

使用DOMDocument进行html修复$htmlStr="<p>1111</p>"; $doc = new DOMDocument(); $doc->loadHTML(mb_convert_encoding($str, 'HTML-ENTITIES','UTF-8')); //获取html $html= $doc->saveHTML();

- 阅读全文 -