Skip to content

Instantly share code, notes, and snippets.

View sytnic's full-sized avatar

Dm. Sytnic sytnic

View GitHub Profile
@sytnic
sytnic / 9.1. lambda.php
Created August 10, 2023 13:00
Lambda Function
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo</title>
</head>
<body>
<?php
$books = [
@sytnic
sytnic / validate_brackets.php
Created May 1, 2023 15:53
Класс проверяет парность скобок
<?php
class Valid {
public $str;
public $check;
function __construct($str) {
$this->check = $this->valid_bracket($str);
}