Идентификаторы в любом виде и назначении должны соответствовать следующему regexp-выражению
[a-zA-Z0-9_\-]
Параметрическое описание каждого товара разделяется на две части:
Идентификаторы в любом виде и назначении должны соответствовать следующему regexp-выражению
[a-zA-Z0-9_\-]
Параметрическое описание каждого товара разделяется на две части:
abstract class BasicEnum {
private static $constCacheArray = NULL;
private static function getConstants() {
if (self::$constCacheArray == NULL) {
self::$constCacheArray = [];
}
$calledClass = get_called_class();
if (!array_key_exists($calledClass, self::$constCacheArray)) {
# `<hash>` - gist's hash
git clone https://gist.github.com/<hash>.git # with https
git clone [email protected]:<hash>.git # or with ssh
#!/usr/bash | |
sudo apt install -y lsb-release ca-certificates apt-transport-https software-properties-common gnupg2 | |
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/sury-php.list | |
curl -fsSL https://packages.sury.org/php/apt.gpg| sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/sury-keyring.gpg | |
sudo apt update | |
echo "!!! Now install PHP what u want !!!" |
echo '[Desktop Entry] | |
Encoding=UTF-8 | |
Version=0.0.1 | |
Type=Application | |
Name=Keymap US-RU | |
Comment= | |
Exec=setxkbmap us,ru -option grp:alt_shift_toggle,grp_led:scroll | |
StartupNotify=false | |
Terminal=false | |
Hidden=false' > ~/.config/autostart/keymaps.desktop |
apt update && apt install wget -y && wget https://dev.mysql.com/get/mysql-apt-config_0.8.13-1_all.deb && dpkg -i mysql-apt-config_0.8.13-1_all.deb && rm -f mysql-apt-config_0.8.13-1_all.deb && apt update && apt install mysql-community-server -y |