This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
References: | |
Установка xDebug: https://xdebug.org/docs/install | |
Описание директив конфигурации: https://xdebug.org/docs/all_settings | |
Описание функций: https://xdebug.org/docs/all_functions | |
XHprof: https://www.php.net/manual/ru/book.xhprof.php | |
Useful links: | |
- https://grandrr.medium.com/profiling-php-application-with-docker-and-xhprof-e23188bdc223 | |
- https://gist.github.com/hoandang/88bfb1e30805df6d1539640fc1719d12 | |
- https://itelmenko.ru/working-environment/xdebug-docker-phpstorm/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$str = trim($str, chr(0xC2).chr(0xA0)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var gulp = require('gulp'), | |
watch = require('gulp-watch'), | |
prefixer = require('gulp-autoprefixer'), | |
uglify = require('gulp-uglify'), | |
sass = require('gulp-sass'), | |
sourcemaps = require('gulp-sourcemaps'), | |
rigger = require('gulp-rigger'), | |
cssmin = require('gulp-minify-css'), |