Associative array
<?php

$co_members = [
				"name"=>"Oto",
				"weight"=>70,
				"hight"=>180,
				"male"=> true,
				"married"=> true];
				
				echo "$co_members[name] is $co_members[weight]kg and $co_members[hight]cm.";
OUTPUT

Oto is 70kg and 180cm.
by otar datuadze
2 years ago
PHP
array
1
Pro tip: use ```triple backticks around text``` to write in code fences