mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-25 17:13:08 +00:00
10 lines
189 B
PHP
10 lines
189 B
PHP
<?php
|
|
require_once('algorithm.php');
|
|
|
|
$points = [[3, 5], [5, 3], [5, 5], [5, 0]];
|
|
$objects = array_map(['Algorithm', 'distance'], $points);
|
|
|
|
echo '<pre>';
|
|
print_r($objects);
|
|
echo '</pre>';
|