Skip to content

Instantly share code, notes, and snippets.

@koras
Created August 1, 2025 09:27
Show Gist options
  • Save koras/3620e66008ae2712de6f888816617e2b to your computer and use it in GitHub Desktop.
Save koras/3620e66008ae2712de6f888816617e2b to your computer and use it in GitHub Desktop.
<?php
$lastName = "Фамилия";
$firstName = "Имя";
$middleName = "Отчество";
$lastName = "";
$firstName = "";
$middleName = "";
$fullName = trim("$lastName $firstName $middleName");
echo strlen($fullName);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment